Remove debug messages of Interrupted state
This commit is contained in:
parent
46f4f2658d
commit
541cd3ae94
|
|
@ -351,8 +351,6 @@ StepStatus ProtocolLogic::ProcessCommandQueryResponse() {
|
||||||
return Finished;
|
return Finished;
|
||||||
} else {
|
} else {
|
||||||
// got response to some other command - the originally issued command was interrupted!
|
// got response to some other command - the originally issued command was interrupted!
|
||||||
static const char intr[] PROGMEM = "Intr2"; // @@TODO clean up
|
|
||||||
MMU2_ERROR_MSGRPGM(intr);
|
|
||||||
return Interrupted;
|
return Interrupted;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
@ -444,8 +442,6 @@ StepStatus ProtocolLogic::IdleStep() {
|
||||||
if( ReqMsg().code != RequestMsgCodes::unknown ){
|
if( ReqMsg().code != RequestMsgCodes::unknown ){
|
||||||
// got reset while doing some other command - the originally issued command was interrupted!
|
// got reset while doing some other command - the originally issued command was interrupted!
|
||||||
// this must be solved by the upper layer, protocol logic doesn't have all the context (like unload before trying again)
|
// this must be solved by the upper layer, protocol logic doesn't have all the context (like unload before trying again)
|
||||||
static const char intr[] PROGMEM = "Intr1"; // @@TODO cleanup
|
|
||||||
MMU2_ERROR_MSGRPGM(intr);
|
|
||||||
IdleRestart();
|
IdleRestart();
|
||||||
return Interrupted;
|
return Interrupted;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue