tweaks
Some checks are pending
EIVE/eive-obsw/pipeline/pr-main Build started...

This commit is contained in:
Robin Müller 2023-08-03 13:03:10 +02:00
parent 97f40232d7
commit e746c151d3
Signed by: muellerr
GPG Key ID: 407F9B00F858F270

View File

@ -1,4 +1,5 @@
#include <fsfw/src/fsfw/datapool/PoolReadGuard.h> #include <fsfw/datapool/PoolReadGuard.h>
#include "fsfw/thermal/tcsDefinitions.h"
#include <fsfw/tasks/TaskFactory.h> #include <fsfw/tasks/TaskFactory.h>
#include <mission/payload/PayloadPcduHandler.h> #include <mission/payload/PayloadPcduHandler.h>
@ -69,7 +70,7 @@ void PayloadPcduHandler::doShutDown() {
{ {
PoolReadGuard pg(&adcSet); PoolReadGuard pg(&adcSet);
adcSet.setReportingEnabled(false); adcSet.setReportingEnabled(false);
adcSet.tempC = 0; adcSet.tempC = thermal::INVALID_TEMPERATURE;
std::memset(adcSet.channels.value, 0, sizeof(adcSet.channels.value)); std::memset(adcSet.channels.value, 0, sizeof(adcSet.channels.value));
std::memset(adcSet.processed.value, 0, sizeof(adcSet.processed.value)); std::memset(adcSet.processed.value, 0, sizeof(adcSet.processed.value));
@ -385,9 +386,7 @@ void PayloadPcduHandler::quickTransitionBackToOff(bool startTransitionToOff, boo
state = States::STACK_5V_SWITCHING; state = States::STACK_5V_SWITCHING;
adcState = AdcState::OFF; adcState = AdcState::OFF;
if (startTransitionToOff) { if (startTransitionToOff) {
sif::debug << "transition back to off" << std::endl;
startTransition(MODE_OFF, 0); startTransition(MODE_OFF, 0);
sif::debug << "blubwapfwa" << std::endl;
} }
if (notifyFdir) { if (notifyFdir) {
triggerEvent(TRANSITION_BACK_TO_OFF, static_cast<uint32_t>(currentState)); triggerEvent(TRANSITION_BACK_TO_OFF, static_cast<uint32_t>(currentState));