Merge remote-tracking branch 'origin/develop' into tweak_syrlinks_hk
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
This commit is contained in:
commit
c9bd922711
@ -25,6 +25,8 @@ will consitute of a breaking change warranting a new major release:
|
|||||||
|
|
||||||
- Doubled GS PST interval instead of scheduling everything twice.
|
- Doubled GS PST interval instead of scheduling everything twice.
|
||||||
- Syrlinks now only has one `PERFORM_OPERATION` step, but still has two communication steps.
|
- Syrlinks now only has one `PERFORM_OPERATION` step, but still has two communication steps.
|
||||||
|
- TCS controller now does a sanity check on the temperature values: Values below -80 C or above
|
||||||
|
160 C are ignored.
|
||||||
|
|
||||||
# [v1.43.0] 2023-04-04
|
# [v1.43.0] 2023-04-04
|
||||||
|
|
||||||
|
@ -988,13 +988,15 @@ void ThermalController::ctrlAcsBoard() {
|
|||||||
sensors[4].first = sensorTemperatures.tcsBoard.isValid();
|
sensors[4].first = sensorTemperatures.tcsBoard.isValid();
|
||||||
sensors[4].second = sensorTemperatures.tcsBoard.value;
|
sensors[4].second = sensorTemperatures.tcsBoard.value;
|
||||||
numSensors = 5;
|
numSensors = 5;
|
||||||
if (selectAndReadSensorTemp()) {
|
{
|
||||||
if (chooseHeater(switchNr, redSwitchNr)) {
|
HeaterContext htrCtx(switchNr, redSwitchNr, acsBoardLimits);
|
||||||
HeaterContext htrCtx(switchNr, redSwitchNr, acsBoardLimits);
|
if (selectAndReadSensorTemp(htrCtx)) {
|
||||||
checkLimitsAndCtrlHeater(htrCtx);
|
if (chooseHeater(switchNr, redSwitchNr)) {
|
||||||
|
checkLimitsAndCtrlHeater(htrCtx);
|
||||||
|
}
|
||||||
|
resetSensorsArray();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
resetSensorsArray();
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
resetSensorsArray();
|
resetSensorsArray();
|
||||||
// B side
|
// B side
|
||||||
@ -1007,15 +1009,18 @@ void ThermalController::ctrlAcsBoard() {
|
|||||||
sensors[3].first = sensorTemperatures.tcsBoard.isValid();
|
sensors[3].first = sensorTemperatures.tcsBoard.isValid();
|
||||||
sensors[3].second = sensorTemperatures.tcsBoard.value;
|
sensors[3].second = sensorTemperatures.tcsBoard.value;
|
||||||
numSensors = 4;
|
numSensors = 4;
|
||||||
if (selectAndReadSensorTemp()) {
|
|
||||||
if (chooseHeater(switchNr, redSwitchNr)) {
|
{
|
||||||
HeaterContext htrCtx(switchNr, redSwitchNr, acsBoardLimits);
|
HeaterContext htrCtx(switchNr, redSwitchNr, acsBoardLimits);
|
||||||
checkLimitsAndCtrlHeater(htrCtx);
|
if (selectAndReadSensorTemp(htrCtx)) {
|
||||||
}
|
if (chooseHeater(switchNr, redSwitchNr)) {
|
||||||
} else {
|
checkLimitsAndCtrlHeater(htrCtx);
|
||||||
if (chooseHeater(switchNr, redSwitchNr)) {
|
}
|
||||||
if (heaterHandler.getSwitchState(switchNr)) {
|
} else {
|
||||||
heaterHandler.switchHeater(switchNr, HeaterHandler::SwitchState::OFF);
|
if (chooseHeater(switchNr, redSwitchNr)) {
|
||||||
|
if (heaterHandler.getSwitchState(switchNr)) {
|
||||||
|
heaterHandler.switchHeater(switchNr, HeaterHandler::SwitchState::OFF);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1546,7 +1551,7 @@ void ThermalController::performThermalModuleCtrl(const HeaterSwitchStates& heate
|
|||||||
heaterTransitionControl(heaterSwitchStates);
|
heaterTransitionControl(heaterSwitchStates);
|
||||||
}
|
}
|
||||||
void ThermalController::ctrlComponentTemperature(HeaterContext& htrCtx) {
|
void ThermalController::ctrlComponentTemperature(HeaterContext& htrCtx) {
|
||||||
if (selectAndReadSensorTemp()) {
|
if (selectAndReadSensorTemp(htrCtx)) {
|
||||||
if (chooseHeater(htrCtx.switchNr, htrCtx.redSwitchNr)) {
|
if (chooseHeater(htrCtx.switchNr, htrCtx.redSwitchNr)) {
|
||||||
checkLimitsAndCtrlHeater(htrCtx);
|
checkLimitsAndCtrlHeater(htrCtx);
|
||||||
}
|
}
|
||||||
@ -1560,9 +1565,11 @@ void ThermalController::ctrlComponentTemperature(HeaterContext& htrCtx) {
|
|||||||
}
|
}
|
||||||
resetSensorsArray();
|
resetSensorsArray();
|
||||||
}
|
}
|
||||||
bool ThermalController::selectAndReadSensorTemp() {
|
bool ThermalController::selectAndReadSensorTemp(HeaterContext& htrCtx) {
|
||||||
for (unsigned i = 0; i < numSensors; i++) {
|
for (unsigned i = 0; i < numSensors; i++) {
|
||||||
if (sensors[i].first and sensors[i].second != INVALID_TEMPERATURE) {
|
if (sensors[i].first and sensors[i].second != INVALID_TEMPERATURE and
|
||||||
|
sensors[i].second > SANITY_LIMIT_LOWER_TEMP and
|
||||||
|
sensors[i].second < SANITY_LIMIT_UPPER_TEMP) {
|
||||||
sensorTemp = sensors[i].second;
|
sensorTemp = sensors[i].second;
|
||||||
thermalStates[thermalComponent].errorCounter = 0;
|
thermalStates[thermalComponent].errorCounter = 0;
|
||||||
return true;
|
return true;
|
||||||
|
@ -91,6 +91,8 @@ class ThermalController : public ExtendedControllerBase {
|
|||||||
public:
|
public:
|
||||||
static const uint16_t INVALID_TEMPERATURE = 999;
|
static const uint16_t INVALID_TEMPERATURE = 999;
|
||||||
static const uint8_t NUMBER_OF_SENSORS = 16;
|
static const uint8_t NUMBER_OF_SENSORS = 16;
|
||||||
|
static constexpr int16_t SANITY_LIMIT_LOWER_TEMP = -80;
|
||||||
|
static constexpr int16_t SANITY_LIMIT_UPPER_TEMP = 160;
|
||||||
|
|
||||||
ThermalController(object_id_t objectId, HeaterHandler& heater);
|
ThermalController(object_id_t objectId, HeaterHandler& heater);
|
||||||
|
|
||||||
@ -299,7 +301,7 @@ class ThermalController : public ExtendedControllerBase {
|
|||||||
void heaterCtrlTempTooHighHandler(HeaterContext& heaterContext, const char* whatLimit);
|
void heaterCtrlTempTooHighHandler(HeaterContext& heaterContext, const char* whatLimit);
|
||||||
|
|
||||||
bool chooseHeater(heater::Switchers& switchNr, heater::Switchers redSwitchNr);
|
bool chooseHeater(heater::Switchers& switchNr, heater::Switchers redSwitchNr);
|
||||||
bool selectAndReadSensorTemp();
|
bool selectAndReadSensorTemp(HeaterContext& htrCtx);
|
||||||
|
|
||||||
void ctrlAcsBoard();
|
void ctrlAcsBoard();
|
||||||
void ctrlMgt();
|
void ctrlMgt();
|
||||||
|
Loading…
Reference in New Issue
Block a user