PL PCDU tweaks #766

Merged
muellerr merged 12 commits from pl-pcdu-tweaks into main 2023-08-03 13:07:11 +02:00
Showing only changes of commit e746c151d3 - Show all commits

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 <mission/payload/PayloadPcduHandler.h>
@ -69,7 +70,7 @@ void PayloadPcduHandler::doShutDown() {
{
PoolReadGuard pg(&adcSet);
adcSet.setReportingEnabled(false);
muellerr marked this conversation as resolved Outdated

use the invalid temp constexpr instead?

use the invalid temp constexpr instead?
adcSet.tempC = 0;
adcSet.tempC = thermal::INVALID_TEMPERATURE;
std::memset(adcSet.channels.value, 0, sizeof(adcSet.channels.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;
adcState = AdcState::OFF;
if (startTransitionToOff) {
muellerr marked this conversation as resolved Outdated

do we want to keep the debug printout?

do we want to keep the debug printout?
sif::debug << "transition back to off" << std::endl;
startTransition(MODE_OFF, 0);
sif::debug << "blubwapfwa" << std::endl;
}
muellerr marked this conversation as resolved Outdated

blabliblub

blabliblub
if (notifyFdir) {
triggerEvent(TRANSITION_BACK_TO_OFF, static_cast<uint32_t>(currentState));