|
@@ -40,6 +40,10 @@
|
40
|
40
|
#include "../../feature/power_loss_recovery.h"
|
41
|
41
|
#endif
|
42
|
42
|
|
|
43
|
+#if HAS_BED_PROBE
|
|
44
|
+ #include "../../module/probe.h"
|
|
45
|
+#endif
|
|
46
|
+
|
43
|
47
|
#define HAS_DEBUG_MENU ENABLED(LCD_PROGRESS_BAR_TEST)
|
44
|
48
|
|
45
|
49
|
void menu_advanced_settings();
|
|
@@ -306,6 +310,12 @@ void menu_configuration() {
|
306
|
310
|
|
307
|
311
|
MENU_ITEM(submenu, MSG_ADVANCED_SETTINGS, menu_advanced_settings);
|
308
|
312
|
|
|
313
|
+ #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
|
|
314
|
+ MENU_ITEM(submenu, MSG_ZPROBE_ZOFFSET, lcd_babystep_zoffset);
|
|
315
|
+ #elif HAS_BED_PROBE
|
|
316
|
+ MENU_ITEM_EDIT(float52, MSG_ZPROBE_ZOFFSET, &zprobe_zoffset, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX);
|
|
317
|
+ #endif
|
|
318
|
+
|
309
|
319
|
const bool busy = printer_busy();
|
310
|
320
|
if (!busy) {
|
311
|
321
|
//
|