Patch up LCD level bed menus
This commit is contained in:
parent
78af2b1444
commit
b3a97b5013
@ -3800,6 +3800,10 @@ void home_all_axes() { gcode_G28(true); }
|
|||||||
|
|
||||||
#if ENABLED(MESH_BED_LEVELING) || ENABLED(PROBE_MANUALLY)
|
#if ENABLED(MESH_BED_LEVELING) || ENABLED(PROBE_MANUALLY)
|
||||||
|
|
||||||
|
#if ENABLED(PROBE_MANUALLY) && ENABLED(LCD_BED_LEVELING)
|
||||||
|
extern bool lcd_wait_for_move;
|
||||||
|
#endif
|
||||||
|
|
||||||
inline void _manual_goto_xy(const float &x, const float &y) {
|
inline void _manual_goto_xy(const float &x, const float &y) {
|
||||||
const float old_feedrate_mm_s = feedrate_mm_s;
|
const float old_feedrate_mm_s = feedrate_mm_s;
|
||||||
|
|
||||||
@ -3822,6 +3826,10 @@ void home_all_axes() { gcode_G28(true); }
|
|||||||
|
|
||||||
feedrate_mm_s = old_feedrate_mm_s;
|
feedrate_mm_s = old_feedrate_mm_s;
|
||||||
stepper.synchronize();
|
stepper.synchronize();
|
||||||
|
|
||||||
|
#if ENABLED(PROBE_MANUALLY) && ENABLED(LCD_BED_LEVELING)
|
||||||
|
lcd_wait_for_move = false;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
@ -4414,16 +4422,20 @@ void home_all_axes() { gcode_G28(true); }
|
|||||||
#endif
|
#endif
|
||||||
planner.abl_enabled = abl_should_enable;
|
planner.abl_enabled = abl_should_enable;
|
||||||
g29_in_progress = false;
|
g29_in_progress = false;
|
||||||
|
#if ENABLED(LCD_BED_LEVELING)
|
||||||
|
lcd_wait_for_move = false;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
// Query G29 status
|
// Query G29 status
|
||||||
if (verbose_level || seenQ) {
|
if (verbose_level || seenQ) {
|
||||||
if (!g29_in_progress)
|
SERIAL_PROTOCOLPGM("Manual G29 ");
|
||||||
SERIAL_PROTOCOLLNPGM("Manual G29 idle");
|
if (g29_in_progress) {
|
||||||
else {
|
SERIAL_PROTOCOLPAIR("point ", abl_probe_index + 1);
|
||||||
SERIAL_PROTOCOLPAIR("Manual G29 point ", abl_probe_index + 1);
|
|
||||||
SERIAL_PROTOCOLLNPAIR(" of ", abl2);
|
SERIAL_PROTOCOLLNPAIR(" of ", abl2);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
SERIAL_PROTOCOLLNPGM("idle");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (seenA || seenQ) return;
|
if (seenA || seenQ) return;
|
||||||
@ -4681,6 +4693,10 @@ void home_all_axes() { gcode_G28(true); }
|
|||||||
if (DEBUGGING(LEVELING)) DEBUG_POS("> probing complete", current_position);
|
if (DEBUGGING(LEVELING)) DEBUG_POS("> probing complete", current_position);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if ENABLED(PROBE_MANUALLY) && ENABLED(LCD_BED_LEVELING)
|
||||||
|
lcd_wait_for_move = false;
|
||||||
|
#endif
|
||||||
|
|
||||||
// Calculate leveling, print reports, correct the position
|
// Calculate leveling, print reports, correct the position
|
||||||
#if ENABLED(AUTO_BED_LEVELING_BILINEAR)
|
#if ENABLED(AUTO_BED_LEVELING_BILINEAR)
|
||||||
|
|
||||||
|
887
Marlin/ultralcd.cpp
Normal file → Executable file
887
Marlin/ultralcd.cpp
Normal file → Executable file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user