|
@ -54,6 +54,10 @@ |
|
|
#include "../../feature/password/password.h" |
|
|
#include "../../feature/password/password.h" |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
#ifdef ACTION_ON_START |
|
|
|
|
|
#include "../../feature/host_actions.h" |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
void menu_tune(); |
|
|
void menu_tune(); |
|
|
void menu_cancelobject(); |
|
|
void menu_cancelobject(); |
|
|
void menu_motion(); |
|
|
void menu_motion(); |
|
@ -158,6 +162,10 @@ void menu_main() { |
|
|
if (TERN0(MACHINE_CAN_PAUSE, printingIsPaused())) |
|
|
if (TERN0(MACHINE_CAN_PAUSE, printingIsPaused())) |
|
|
ACTION_ITEM(MSG_RESUME_PRINT, ui.resume_print); |
|
|
ACTION_ITEM(MSG_RESUME_PRINT, ui.resume_print); |
|
|
|
|
|
|
|
|
|
|
|
#ifdef ACTION_ON_START |
|
|
|
|
|
ACTION_ITEM(MSG_HOST_START_PRINT, host_action_start); |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
SUBMENU(MSG_MOTION, menu_motion); |
|
|
SUBMENU(MSG_MOTION, menu_motion); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|