set dataset invalid on OFF mode #726

Merged
muellerr merged 3 commits from tmp-1075-set-sets-invalid into main 2023-07-06 14:27:06 +02:00
Showing only changes of commit f4f365b110 - Show all commits

View File

@ -1,3 +1,4 @@
#include <fsfw/datapool/PoolReadGuard.h>
#include <OBSWConfig.h>
#include <mission/tcs/Tmp1075Definitions.h>
#include <mission/tcs/Tmp1075Handler.h>
@ -19,6 +20,7 @@ void Tmp1075Handler::doStartUp() {
void Tmp1075Handler::doShutDown() {
communicationStep = CommunicationStep::START_ADC_CONVERSION;
meggert marked this conversation as resolved Outdated

PoolReadGuard missing for commit

`PoolReadGuard` missing for commit
PoolReadGuard pg(&dataset);
dataset.setValidity(false, true);
setMode(_MODE_POWER_DOWN);
}