syrlinks event works
EIVE/eive-obsw/pipeline/pr-develop This commit looks good Details

This commit is contained in:
Robin Müller 2023-03-16 18:28:51 +01:00
parent 56a4378a63
commit eda1f7e212
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
2 changed files with 3 additions and 1 deletions

View File

@ -98,6 +98,7 @@ void ThermalController::performControlOperation() {
if (initialCountdown.hasTimedOut()) {
sif::info << "Starting thermal control operations" << std::endl;
internalState = InternalState::READY;
break;
}
return;
}
@ -109,6 +110,7 @@ void ThermalController::performControlOperation() {
}
if (cycles == 50) {
sif::debug << "ThermalController: changing limits" << std::endl;
#if LOWER_SYRLINKS_UPPER_LIMITS == 1
sBandTransceiverLimits.cutOffLimit = 0;
sBandTransceiverLimits.opUpperLimit = 0;

View File

@ -97,7 +97,7 @@ class ThermalController : public ExtendedControllerBase {
uint32_t* msToReachTheMode) override;
private:
static const uint32_t INIT_DELAY = 3000;
static const uint32_t INIT_DELAY = 1500;
static const uint32_t TEMP_OFFSET = 5;