v4.0.0 #699

Merged
muellerr merged 84 commits from v4.0.0-dev into main 2023-06-22 17:43:31 +02:00
32 changed files with 165 additions and 235 deletions
Showing only changes of commit 0c394ad34d - Show all commits

View File

@@ -12,6 +12,8 @@ extern "C" {
#include <wire/common/genericstructs.h> #include <wire/common/genericstructs.h>
} }
#include "fsfw/thermal/tcsDefinitions.h"
#include <atomic> #include <atomic>
#include <fstream> #include <fstream>
#include <thread> #include <thread>
@@ -111,6 +113,9 @@ void StarTrackerHandler::doShutDown() {
} }
{ {
PoolReadGuard pg(&temperatureSet); PoolReadGuard pg(&temperatureSet);
temperatureSet.fpgaTemperature = thermal::INVALID_TEMPERATURE;
temperatureSet.cmosTemperature = thermal::INVALID_TEMPERATURE;
temperatureSet.mcuTemperature = thermal::INVALID_TEMPERATURE;
temperatureSet.setValidity(false, true); temperatureSet.setValidity(false, true);
} }
reinitNextSetParam = false; reinitNextSetParam = false;