The TRReset state is not needed with fall-through

This commit is contained in:
Scott Lahteine
2016-05-08 17:01:46 -07:00
parent c2522ce1f5
commit 6b13c430ae
2 changed files with 4 additions and 7 deletions

View File

@ -1048,12 +1048,9 @@ void Temperature::init() {
// If the target temperature changes, restart
if (tr_target_temperature[heater_index] != target_temperature)
*state = TRReset;
*state = TRInactive;
switch (*state) {
case TRReset:
*timer = 0;
*state = TRInactive;
// Inactive state waits for a target temperature to be set
case TRInactive:
if (target_temperature <= 0) break;