🚸 M86-M87 Hotend Idle Timeout (#25015)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
parent
0138aff890
commit
402c4ef5d3
13 changed files with 199 additions and 20 deletions
|
|
@ -658,8 +658,15 @@ void GcodeSuite::process_parsed_command(const bool no_ok/*=false*/) {
|
|||
case 82: M82(); break; // M82: Set E axis normal mode (same as other axes)
|
||||
case 83: M83(); break; // M83: Set E axis relative mode
|
||||
#endif
|
||||
|
||||
case 18: case 84: M18_M84(); break; // M18/M84: Disable Steppers / Set Timeout
|
||||
case 85: M85(); break; // M85: Set inactivity stepper shutdown timeout
|
||||
|
||||
#if ENABLED(HOTEND_IDLE_TIMEOUT)
|
||||
case 86: M86(); break; // M86: Set Hotend Idle Timeout
|
||||
case 87: M87(); break; // M87: Cancel Hotend Idle Timeout
|
||||
#endif
|
||||
|
||||
case 92: M92(); break; // M92: Set the steps-per-unit for one or more axes
|
||||
case 114: M114(); break; // M114: Report current position
|
||||
case 115: M115(); break; // M115: Report capabilities
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue