this fixed the unrequested reply #349

Merged
muellerr merged 4 commits from mueller/tcs_subsystem into develop 2023-01-23 14:18:23 +01:00
Showing only changes of commit 8c9d215672 - Show all commits

View File

@ -21,6 +21,7 @@ void Max31865EiveHandler::doStartUp() {
transitionOk = false;
}
if ((state == InternalState::ON or state == InternalState::ACTIVE) and transitionOk) {
updatePeriodicReply(true, EiveMax31855::RtdCommands::EXCHANGE_SET_ID);
if (instantNormal) {
setMode(MODE_NORMAL);
} else {
@ -36,6 +37,7 @@ void Max31865EiveHandler::doShutDown() {
transitionOk = false;
}
if (state == InternalState::INACTIVE and transitionOk) {
updatePeriodicReply(false, EiveMax31855::RtdCommands::EXCHANGE_SET_ID);
setMode(MODE_OFF);
}
}