From 541cd3ae9474cb6cec1ff5391610f74cec503460 Mon Sep 17 00:00:00 2001 From: "D.R.racer" Date: Sat, 19 Nov 2022 16:32:32 +0100 Subject: [PATCH] Remove debug messages of Interrupted state --- Firmware/mmu2_protocol_logic.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Firmware/mmu2_protocol_logic.cpp b/Firmware/mmu2_protocol_logic.cpp index e2c368518..b463874aa 100644 --- a/Firmware/mmu2_protocol_logic.cpp +++ b/Firmware/mmu2_protocol_logic.cpp @@ -351,8 +351,6 @@ StepStatus ProtocolLogic::ProcessCommandQueryResponse() { return Finished; } else { // 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; } default: @@ -444,8 +442,6 @@ StepStatus ProtocolLogic::IdleStep() { if( ReqMsg().code != RequestMsgCodes::unknown ){ // 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) - static const char intr[] PROGMEM = "Intr1"; // @@TODO cleanup - MMU2_ERROR_MSGRPGM(intr); IdleRestart(); return Interrupted; }