changes for updated TMTC API

This commit is contained in:
2022-07-27 11:33:40 +02:00
parent a76b0ae56c
commit 43060b3be7
3 changed files with 28 additions and 24 deletions

View File

@ -137,7 +137,7 @@ void FsfwTestController::handleChangedDataset(sid_t sid,
if (verboseLevel >= 1) {
char const *printout = nullptr;
if (storeId == storeId::INVALID_STORE_ADDRESS) {
if (storeId == store_address_t::invalid()) {
printout = "Notification";
} else {
printout = "Snapshot";
@ -156,7 +156,7 @@ void FsfwTestController::handleChangedDataset(sid_t sid,
printout, sid.objectId, sid.ownerSetId);
#endif
if (storeId == storeId::INVALID_STORE_ADDRESS) {
if (storeId == store_address_t::invalid()) {
if (sid.objectId == device0Id) {
PoolReadGuard readHelper(&deviceDataset0.testFloat3Vec);
float floatVec[3];
@ -189,7 +189,7 @@ void FsfwTestController::handleChangedPoolVariable(gp_id_t globPoolId,
if (verboseLevel >= 1) {
char const *printout = nullptr;
if (storeId == storeId::INVALID_STORE_ADDRESS) {
if (storeId == store_address_t::invalid()) {
printout = "Notification";
} else {
printout = "Snapshot";
@ -209,7 +209,7 @@ void FsfwTestController::handleChangedPoolVariable(gp_id_t globPoolId,
printout, globPoolId.objectId, globPoolId.localPoolId);
#endif /* FSFW_CPP_OSTREAM_ENABLED == 1 */
if (storeId == storeId::INVALID_STORE_ADDRESS) {
if (storeId == store_address_t::invalid()) {
if (globPoolId.objectId == device0Id) {
PoolReadGuard readHelper(&deviceDataset0.testUint8Var);
#if FSFW_CPP_OSTREAM_ENABLED == 1