Optional Host Start menu item (#19443)
This commit is contained in:
parent
9fd06fa767
commit
af8f9f790a
|
@ -3232,6 +3232,7 @@
|
||||||
//#define HOST_ACTION_COMMANDS
|
//#define HOST_ACTION_COMMANDS
|
||||||
#if ENABLED(HOST_ACTION_COMMANDS)
|
#if ENABLED(HOST_ACTION_COMMANDS)
|
||||||
//#define HOST_PROMPT_SUPPORT
|
//#define HOST_PROMPT_SUPPORT
|
||||||
|
//#define HOST_START_MENU_ITEM // Add a menu item that tells the host to start
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
#include "../../feature/password/password.h"
|
#include "../../feature/password/password.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ACTION_ON_START
|
#if ENABLED(HOST_START_MENU_ITEM) && defined(ACTION_ON_START)
|
||||||
#include "../../feature/host_actions.h"
|
#include "../../feature/host_actions.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -162,7 +162,7 @@ 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
|
#if ENABLED(HOST_START_MENU_ITEM) && defined(ACTION_ON_START)
|
||||||
ACTION_ITEM(MSG_HOST_START_PRINT, host_action_start);
|
ACTION_ITEM(MSG_HOST_START_PRINT, host_action_start);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue