Syrlinks Update #353
@ -25,7 +25,7 @@ void SyrlinksHandler::doStartUp() {
|
|||||||
}
|
}
|
||||||
if (internalState == InternalState::ENABLE_TEMPERATURE_PROTECTION) {
|
if (internalState == InternalState::ENABLE_TEMPERATURE_PROTECTION) {
|
||||||
if (commandExecuted) {
|
if (commandExecuted) {
|
||||||
// Got to normal mode immediately and disable transmitter on startup.
|
// Go to normal mode immediately and disable transmitter on startup.
|
||||||
setMode(_MODE_TO_NORMAL);
|
setMode(_MODE_TO_NORMAL);
|
||||||
internalState = InternalState::IDLE;
|
internalState = InternalState::IDLE;
|
||||||
commandExecuted = false;
|
commandExecuted = false;
|
||||||
@ -35,13 +35,17 @@ void SyrlinksHandler::doStartUp() {
|
|||||||
|
|
||||||
void SyrlinksHandler::doShutDown() {
|
void SyrlinksHandler::doShutDown() {
|
||||||
// In any case, always disable TX first.
|
// In any case, always disable TX first.
|
||||||
internalState = InternalState::SET_TX_STANDBY;
|
if (internalState != InternalState::SET_TX_STANDBY) {
|
||||||
commandExecuted = false;
|
internalState = InternalState::SET_TX_STANDBY;
|
||||||
if (commandExecuted) {
|
|
||||||
temperatureSet.setValidity(false, true);
|
|
||||||
internalState = InternalState::OFF;
|
|
||||||
commandExecuted = false;
|
commandExecuted = false;
|
||||||
setMode(_MODE_POWER_DOWN);
|
}
|
||||||
|
if (internalState == InternalState::SET_TX_STANDBY) {
|
||||||
|
if (commandExecuted) {
|
||||||
|
temperatureSet.setValidity(false, true);
|
||||||
|
internalState = InternalState::OFF;
|
||||||
|
commandExecuted = false;
|
||||||
|
setMode(_MODE_POWER_DOWN);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user