Singleton for cutting tools (#14429)
This commit is contained in:
parent
2fde1475cb
commit
d7d80418ae
127 changed files with 2773 additions and 2675 deletions
|
@ -74,6 +74,11 @@ void menu_configuration();
|
|||
void menu_led();
|
||||
#endif
|
||||
|
||||
#if HAS_CUTTER
|
||||
#include "../../feature/spindle_laser.h"
|
||||
void menu_spindle_laser();
|
||||
#endif
|
||||
|
||||
#if ENABLED(MIXING_EXTRUDER)
|
||||
void menu_mixer();
|
||||
#endif
|
||||
|
@ -153,6 +158,10 @@ void menu_main() {
|
|||
MENU_ITEM(submenu, MSG_MOTION, menu_motion);
|
||||
}
|
||||
|
||||
#if HAS_CUTTER
|
||||
MENU_ITEM(submenu, MSG_CUTTER(MENU), menu_spindle_laser);
|
||||
#endif
|
||||
|
||||
MENU_ITEM(submenu, MSG_TEMPERATURE, menu_temperature);
|
||||
|
||||
#if ENABLED(MIXING_EXTRUDER)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue