1
0
forked from fsfw/fsfw

pool raw helper input buffer type changed to uint32_t

This commit is contained in:
2020-01-09 19:04:33 +01:00
parent 0ddc44062d
commit 59b25bee86
2 changed files with 3 additions and 3 deletions

View File

@ -8,9 +8,9 @@
#include <framework/datapool/PoolRawAccessHelper.h>
#include <framework/datapool/DataSet.h>
PoolRawAccessHelper::PoolRawAccessHelper(uint8_t * poolIdBuffer_,
PoolRawAccessHelper::PoolRawAccessHelper(uint32_t * poolIdBuffer_,
uint8_t numberOfParameters_):
poolIdBuffer(poolIdBuffer_),
poolIdBuffer(reinterpret_cast<uint8_t * >(poolIdBuffer_)),
numberOfParameters(numberOfParameters_), validBufferIndex(0), validBufferIndexBit(1){
}