We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfcb8c7 commit c52cf77Copy full SHA for c52cf77
Marlin/src/gcode/gcode.cpp
@@ -600,7 +600,9 @@ void GcodeSuite::process_parsed_command(const bool no_ok/*=false*/) {
600
case 108: M108(); break; // M108: Cancel Waiting
601
case 112: M112(); break; // M112: Full Shutdown
602
case 410: M410(); break; // M410: Quickstop - Abort all the planned moves.
603
- TERN_(HOST_PROMPT_SUPPORT, case 876:) // M876: Handle Host prompt responses
+ #if ENABLED(HOST_PROMPT_SUPPORT)
604
+ case 876: M876(); break; // M876: Handle Host prompt responses
605
+ #endif
606
#else
607
case 108: case 112: case 410:
608
TERN_(HOST_PROMPT_SUPPORT, case 876:)
0 commit comments