Skip to content
Snippets Groups Projects
Commit c5dc2e5a authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Update advanced BLTouch menu items

parent 48d1bd29
Branches
Tags
No related merge requests found
...@@ -687,9 +687,9 @@ void menu_advanced_settings() { ...@@ -687,9 +687,9 @@ void menu_advanced_settings() {
// BLTouch Self-Test and Reset // BLTouch Self-Test and Reset
// //
#if ENABLED(BLTOUCH) #if ENABLED(BLTOUCH)
MENU_ITEM(gcode, MSG_BLTOUCH_SELFTEST, PSTR("M280 P" STRINGIFY(Z_PROBE_SERVO_NR) " S" STRINGIFY(BLTOUCH_SELFTEST))); MENU_ITEM(function, MSG_BLTOUCH_SELFTEST, []{ bltouch._selftest(); ui.refresh(); });
if (!endstops.z_probe_enabled && bltouch.triggered()) if (!endstops.z_probe_enabled && bltouch.triggered())
MENU_ITEM(gcode, MSG_BLTOUCH_RESET, PSTR("M280 P" STRINGIFY(Z_PROBE_SERVO_NR) " S" STRINGIFY(BLTOUCH_RESET))); MENU_ITEM(function, MSG_BLTOUCH_RESET, []{ bltouch._reset(); ui.refresh(); });
#endif #endif
#if ENABLED(SD_FIRMWARE_UPDATE) #if ENABLED(SD_FIRMWARE_UPDATE)
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment