✨ EVENT_GCODE_AFTER_MPC_TUNE#27865
Conversation
Marlin/src/module/temperature.cpp
Outdated
| #endif | ||
|
|
||
| do_z_clearance(MPC_TUNING_END_Z, false); | ||
| planner.finish_and_disable(); |
There was a problem hiding this comment.
Is DEFAULT_STEPPER_TIMEOUT_SEC not working after M306 T?
|
I guess works, but no harm to disable it explicitly. I just wanted to move head right after tune but found, that it's locked in place, so I added it.
|
This just leads to an unexpected behavior. If you want to disable steppers right after MPC Autotune, then it'd be best to make it an option (and a comment explaining the |
|
Well, I didn't expect that it remains locked))
|
|
I quickly reworked this as an event with G-code so it can be more flexible. When steppers are disabled the positions will indicate as un-trusted so there is some cue to the user in that case. Not a bad idea to also add an |
MarlinFirmware/Marlin#27865 Co-Authored-By: Vovodroid <vovodroid@users.noreply.github.com>
e9ae520
into
MarlinFirmware:bugfix-2.1.x
Disable steppers after MPC AUTOTUNE finished and Z raised.