Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
//#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
45 changes: 39 additions & 6 deletions Marlin/src/lcd/e3v2/proui/dwin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1251,17 +1251,30 @@ void HMI_Printing() {
}
break;
case ENCODER_DIFF_ENTER:
const bool auto_confirm = TERN0(PROUI_ITEM_CONF, HMI_data.auto_confirm);
switch (select_print.now) {
case PRINT_SETUP: Draw_Tune_Menu(); break;
case PRINT_PAUSE_RESUME:
if (print_job_timer.isPaused()) { // If printer is already in pause
ui.resume_print();
break;
}
Goto_Popup(Popup_window_PauseOrStop, OnClick_PauseOrStop);
if (auto_confirm) {
ui.pause_print();
Goto_PrintProcess();
break;
}
else
Goto_Popup(Popup_window_PauseOrStop, OnClick_PauseOrStop);
return;
case PRINT_STOP:
Goto_Popup(Popup_window_PauseOrStop, OnClick_PauseOrStop);
if (auto_confirm) {
ui.abort_print();
Goto_PrintProcess();
break;
}
else
Goto_Popup(Popup_window_PauseOrStop, OnClick_PauseOrStop);
return;
}
}
Expand Down Expand Up @@ -2163,6 +2176,7 @@ void DWIN_SetDataDefaults() {
#endif
TERN_(HAS_GCODE_PREVIEW, HMI_data.EnablePreview = true;)
TERN_(PROUI_ITEM_ABRT, HMI_data.auto_abort = false;)
TERN_(PROUI_ITEM_CONF, HMI_data.auto_confirm = true;)
#if ENABLED(PROUI_MESH_EDIT)
meshSet.mesh_min_x = DEF_MESH_MIN_X;
meshSet.mesh_max_x = DEF_MESH_MAX_X;
Expand Down Expand Up @@ -2731,7 +2745,10 @@ void SetFlow() { SetPIntOnClick(FLOW_EDIT_MIN, FLOW_EDIT_MAX, []{ planner.refres
#endif

#if ENABLED(SHOW_SPEED_IND)
void SetSpdInd() { Toggle_Chkb_Line(HMI_data.SpdInd); }
void SetSpdInd() {
Toggle_Chkb_Line(HMI_data.SpdInd);
LCD_MESSAGE_F("Enable Print Speed Indicator");
}
#endif

#if ENABLED(PROUI_ITEM_ABRT)
Expand All @@ -2741,6 +2758,13 @@ void SetFlow() { SetPIntOnClick(FLOW_EDIT_MIN, FLOW_EDIT_MAX, []{ planner.refres
}
#endif

#if ENABLED(PROUI_ITEM_CONF)
void SetAutoConfirm() {
Toggle_Chkb_Line(HMI_data.auto_confirm);
LCD_MESSAGE_F("Auto Confirm Stop/Pause");
}
#endif

// Park or Raise Head
#if ENABLED(NOZZLE_PARK_FEATURE)
void ParkHead() {
Expand Down Expand Up @@ -3589,7 +3613,7 @@ void Draw_Tune_Menu() {
}
#endif
checkkey = Menu;
if (SET_MENU(TuneMenu, MSG_TUNE, 24)) {
if (SET_MENU(TuneMenu, MSG_TUNE, 25)) {
BACK_ITEM(Goto_PrintProcess);
#if HAS_LCD_BRIGHTNESS
MENU_ITEM(ICON_Box, MSG_BRIGHTNESS_OFF, onDrawMenuItem, TurnOffBacklight);
Expand Down Expand Up @@ -3626,6 +3650,9 @@ void Draw_Tune_Menu() {
#if ENABLED(PROUI_ITEM_ABRT)
EDIT_ITEM_F(ICON_File, "Stop Motors on Abort", onDrawChkbMenu, SetAutoAbort, &HMI_data.auto_abort);
#endif
#if ENABLED(PROUI_ITEM_CONF)
EDIT_ITEM_F(ICON_File, "Emergency Stop/Pause", onDrawChkbMenu, SetAutoConfirm, &HMI_data.auto_confirm);
#endif
#if ENABLED(SHOW_SPEED_IND)
EDIT_ITEM(ICON_MaxSpeed, MSG_SPEED_IND, onDrawChkbMenu, SetSpdInd, &HMI_data.SpdInd);
#endif
Expand Down Expand Up @@ -4796,7 +4823,7 @@ void Draw_AdvancedSettings_Menu() {
#else // Default-No Probe
void Draw_AdvancedSettings_Menu() {
checkkey = Menu;
if (SET_MENU(AdvancedSettings, MSG_ADVANCED_SETTINGS, 20)) {
if (SET_MENU(AdvancedSettings, MSG_ADVANCED_SETTINGS, 21)) {
BACK_ITEM(Goto_Main_Menu);
#if ENABLED(EEPROM_SETTINGS)
MENU_ITEM(ICON_ReadEEPROM, MSG_LOAD_EEPROM, onDrawMenuItem, ReadEeprom);
Expand All @@ -4817,6 +4844,9 @@ void Draw_AdvancedSettings_Menu() {
#if ENABLED(PROUI_ITEM_ABRT)
EDIT_ITEM_F(ICON_File, "Stop Motors on Abort", onDrawChkbMenu, SetAutoAbort, &HMI_data.auto_abort);
#endif
#if ENABLED(PROUI_ITEM_CONF)
EDIT_ITEM_F(ICON_File, "Emergency Stop/Pause", onDrawChkbMenu, SetAutoConfirm, &HMI_data.auto_confirm);
#endif
#if ENABLED(SHOW_SPEED_IND)
EDIT_ITEM(ICON_MaxSpeed, MSG_SPEED_IND, onDrawChkbMenu, SetSpdInd, &HMI_data.SpdInd);
#endif
Expand Down Expand Up @@ -4856,7 +4886,7 @@ void Draw_AdvancedSettings_Menu() {
#if HAS_MESH
void Draw_Advanced_Menu() { // From Control_Menu (Control) || Default-NP AdvancedSettings_Menu (Level)
checkkey = Menu;
if (SET_MENU(AdvancedMenu, MSG_ADVANCED_SETTINGS, 20)) {
if (SET_MENU(AdvancedMenu, MSG_ADVANCED_SETTINGS, 21)) {
BACK_ITEM(Draw_Control_Menu);
#if ENABLED(EEPROM_SETTINGS)
MENU_ITEM(ICON_ReadEEPROM, MSG_LOAD_EEPROM, onDrawMenuItem, ReadEeprom);
Expand All @@ -4877,6 +4907,9 @@ void Draw_AdvancedSettings_Menu() {
#if ENABLED(PROUI_ITEM_ABRT)
EDIT_ITEM_F(ICON_File, "Stop Motors on Abort", onDrawChkbMenu, SetAutoAbort, &HMI_data.auto_abort);
#endif
#if ENABLED(PROUI_ITEM_CONF)
EDIT_ITEM_F(ICON_File, "Emergency Stop/Pause", onDrawChkbMenu, SetAutoConfirm, &HMI_data.auto_confirm);
#endif
#if ENABLED(SHOW_SPEED_IND)
EDIT_ITEM(ICON_MaxSpeed, MSG_SPEED_IND, onDrawChkbMenu, SetSpdInd, &HMI_data.SpdInd);
#endif
Expand Down
1 change: 1 addition & 0 deletions Marlin/src/lcd/e3v2/proui/proui.h
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ typedef struct {
OPTCODE(MESH_BED_LEVELING, uint8_t z_after_homing)
IF_DISABLED(HAS_BED_PROBE, float ManualZOffset;)
OPTCODE(PROUI_ITEM_ABRT, bool auto_abort)
OPTCODE(PROUI_ITEM_CONF, bool auto_confirm)
#if !PROUI_EX
OPTCODE(PROUI_GRID_PNTS, uint8_t grid_max_points = DEF_GRID_MAX_POINTS)
#if HAS_BED_PROBE
Expand Down
1 change: 1 addition & 0 deletions configurations/Andrew427/Configuration-MP.h
Original file line number Diff line number Diff line change
Expand Up @@ -3576,6 +3576,7 @@
#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Andrew427/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/BTT_SKR-Mini-E3-V2/MM/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/BTT_SKR-Mini-E3-V2/UBL/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
//#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/BTT_SKR-Mini-E3-V3/MM/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/BTT_SKR-Mini-E3-V3/UBL/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Creality Ender/BLT/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Creality Ender/Default/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3574,6 +3574,7 @@
#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3574,6 +3574,7 @@
#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Creality Ender/MM/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Creality Ender/S1/F4/UBL/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3574,6 +3574,7 @@
//#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
//#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Creality Ender/UBL/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Voxelab Aquila 427/BLT/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Voxelab Aquila 427/Default/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Voxelab Aquila 427/MM/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Voxelab Aquila 427/UBL/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Voxelab Aquila HC32/BLT/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3577,6 +3577,7 @@
//#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3577,6 +3577,7 @@
//#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Voxelab Aquila HC32/C2/MM/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3577,6 +3577,7 @@
//#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Voxelab Aquila HC32/Default/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3577,6 +3577,7 @@
//#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Voxelab Aquila HC32/MM/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3577,6 +3577,7 @@
//#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Voxelab Aquila HC32/UBL/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3577,6 +3577,7 @@
//#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Voxelab Aquila/BLT/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
//#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
1 change: 1 addition & 0 deletions configurations/Voxelab Aquila/Default/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3575,6 +3575,7 @@
//#define ENC_MENU_ITEM // Menu item: faster/slower encoder rate (272 bytes of flash)
#define SHOW_SPEED_IND // Menu item: blink speed in mm/s along with speed percentage (296 bytes of flash)
#define PROUI_ITEM_ABRT // Menu item: enable/disable preconfigured abort commands (224 bytes of flash)
#define PROUI_ITEM_CONF // Menu item: enable/disable auto confirm pause/stop print (160 bytes of flash)
//#define NO_BLINK_IND // Disables dashboard icon blink indicator highlighted background

#endif
Expand Down
Loading
Loading