Tramming Wizard submenu option (#20000)

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
Speaka
2020-11-07 10:20:27 +01:00
committed by GitHub
parent 2fdeceda58
commit 6954772ece
9 changed files with 184 additions and 19 deletions

View File

@@ -305,6 +305,10 @@ void menu_move() {
void menu_bed_leveling();
#endif
#if ENABLED(ASSISTED_TRAMMING_WIZARD)
void goto_tramming_wizard();
#endif
void menu_motion() {
START_MENU();
@@ -346,7 +350,9 @@ void menu_motion() {
//
// Assisted Bed Tramming
//
#if ENABLED(ASSISTED_TRAMMING_MENU_ITEM)
#if ENABLED(ASSISTED_TRAMMING_WIZARD)
SUBMENU(MSG_TRAMMING_WIZARD, goto_tramming_wizard);
#elif ENABLED(ASSISTED_TRAMMING_MENU_ITEM)
GCODES_ITEM(MSG_ASSISTED_TRAMMING, PSTR("G35"));
#endif