Browse Source

Optional Host Start menu item (#19443)

vanilla_fb_2.0.x
qwewer0 4 years ago
committed by GitHub
parent
commit
af8f9f790a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      Marlin/Configuration_adv.h
  2. 4
      Marlin/src/lcd/menu/menu_main.cpp

1
Marlin/Configuration_adv.h

@ -3232,6 +3232,7 @@
//#define HOST_ACTION_COMMANDS
#if ENABLED(HOST_ACTION_COMMANDS)
//#define HOST_PROMPT_SUPPORT
//#define HOST_START_MENU_ITEM // Add a menu item that tells the host to start
#endif
/**

4
Marlin/src/lcd/menu/menu_main.cpp

@ -54,7 +54,7 @@
#include "../../feature/password/password.h"
#endif
#ifdef ACTION_ON_START
#if ENABLED(HOST_START_MENU_ITEM) && defined(ACTION_ON_START)
#include "../../feature/host_actions.h"
#endif
@ -162,7 +162,7 @@ void menu_main() {
if (TERN0(MACHINE_CAN_PAUSE, printingIsPaused()))
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);
#endif

Loading…
Cancel
Save