Homing before clearing backlash and cooling nozzle after calibration.

This commit is contained in:
Brian Kahl 2021-09-16 11:52:58 -05:00
parent 3ed3100e04
commit 1542e70194
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ bool ConfirmAutoCalibrationDialogBox::onTouchEnd(uint8_t tag) {
switch (tag) { switch (tag) {
case 1: case 1:
GOTO_SCREEN(StatusScreen); GOTO_SCREEN(StatusScreen);
injectCommands_P(PSTR("M425 X0Y0Z0\nM117 Auto-Calibrate in Progress...\nG28\nG425\nM500\nM117 Backlash Saved")); injectCommands_P(PSTR("G28\nM425 X0Y0Z0\nM117 Auto-Calibrate in Progress...\nG425\nM500\nM104 S0\nM117 Backlash Saved"));
return true; return true;
default: default:
return DialogBoxBaseClass::onTouchEnd(tag); return DialogBoxBaseClass::onTouchEnd(tag);

View File

@ -375,7 +375,7 @@ void menu_motion() {
// Auto-calibration // Auto-calibration
// //
#if ENABLED(CALIBRATION_GCODE) #if ENABLED(CALIBRATION_GCODE)
GCODES_ITEM(MSG_AUTO_CALIBRATE, PSTR("M425 X0Y0Z0\nM117 Auto-Calibrate in Progress...\nG28\nG425\nM500\nM117 Backlash Saved")); GCODES_ITEM(MSG_AUTO_CALIBRATE, PSTR("G28\nM425 X0Y0Z0\nM117 Auto-Calibrate in Progress...\nG425\nM500\nM104 S0\nM117 Backlash Saved"));
#endif #endif
// //