parent
1a111180de
commit
2cc9774f34
@ -408,6 +408,9 @@
|
|||||||
#ifndef MSG_ZPROBE_OUT
|
#ifndef MSG_ZPROBE_OUT
|
||||||
#define MSG_ZPROBE_OUT _UxGT("Z probe out. bed")
|
#define MSG_ZPROBE_OUT _UxGT("Z probe out. bed")
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef MSG_BLTOUCH
|
||||||
|
#define MSG_BLTOUCH _UxGT("BLTouch")
|
||||||
|
#endif
|
||||||
#ifndef MSG_BLTOUCH_SELFTEST
|
#ifndef MSG_BLTOUCH_SELFTEST
|
||||||
#define MSG_BLTOUCH_SELFTEST _UxGT("BLTouch Self-Test")
|
#define MSG_BLTOUCH_SELFTEST _UxGT("BLTouch Self-Test")
|
||||||
#endif
|
#endif
|
||||||
|
@ -34,10 +34,6 @@
|
|||||||
#include "buzzer.h"
|
#include "buzzer.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(BLTOUCH)
|
|
||||||
#include "endstops.h"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ENABLED(PRINTCOUNTER)
|
#if ENABLED(PRINTCOUNTER)
|
||||||
#include "printcounter.h"
|
#include "printcounter.h"
|
||||||
#include "duration_t.h"
|
#include "duration_t.h"
|
||||||
@ -723,6 +719,28 @@ void kill_screen(const char* lcd_msg) {
|
|||||||
|
|
||||||
#endif // MENU_ITEM_CASE_LIGHT
|
#endif // MENU_ITEM_CASE_LIGHT
|
||||||
|
|
||||||
|
#if ENABLED(BLTOUCH)
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* "BLTouch" submenu
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
static void bltouch_menu() {
|
||||||
|
START_MENU();
|
||||||
|
//
|
||||||
|
// ^ Main
|
||||||
|
//
|
||||||
|
MENU_BACK(MSG_MAIN);
|
||||||
|
MENU_ITEM(gcode, MSG_BLTOUCH_RESET, PSTR("M280 P" STRINGIFY(Z_ENDSTOP_SERVO_NR) " S" STRINGIFY(BLTOUCH_RESET)));
|
||||||
|
MENU_ITEM(gcode, MSG_BLTOUCH_SELFTEST, PSTR("M280 P" STRINGIFY(Z_ENDSTOP_SERVO_NR) " S" STRINGIFY(BLTOUCH_SELFTEST)));
|
||||||
|
MENU_ITEM(gcode, MSG_BLTOUCH_DEPLOY, PSTR("M280 P" STRINGIFY(Z_ENDSTOP_SERVO_NR) " S" STRINGIFY(BLTOUCH_DEPLOY)));
|
||||||
|
MENU_ITEM(gcode, MSG_BLTOUCH_STOW, PSTR("M280 P" STRINGIFY(Z_ENDSTOP_SERVO_NR) " S" STRINGIFY(BLTOUCH_STOW)));
|
||||||
|
END_MENU();
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // BLTOUCH
|
||||||
|
|
||||||
#if ENABLED(LCD_PROGRESS_BAR_TEST)
|
#if ENABLED(LCD_PROGRESS_BAR_TEST)
|
||||||
|
|
||||||
static void progress_bar_test() {
|
static void progress_bar_test() {
|
||||||
@ -792,8 +810,7 @@ void kill_screen(const char* lcd_msg) {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(BLTOUCH)
|
#if ENABLED(BLTOUCH)
|
||||||
if (!endstops.z_probe_enabled && TEST_BLTOUCH())
|
MENU_ITEM(submenu, MSG_BLTOUCH, bltouch_menu);
|
||||||
MENU_ITEM(gcode, MSG_BLTOUCH_RESET, PSTR("M280 P" STRINGIFY(Z_ENDSTOP_SERVO_NR) " S" STRINGIFY(BLTOUCH_RESET)));
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (planner.movesplanned() || IS_SD_PRINTING) {
|
if (planner.movesplanned() || IS_SD_PRINTING) {
|
||||||
|
Loading…
Reference in New Issue
Block a user