Skip to content

Commit

Permalink
⛙ Merge w/HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
classicrocker883 committed Nov 20, 2024
2 parents 5ff57b5 + 84ef752 commit 6d4c0e4
Show file tree
Hide file tree
Showing 59 changed files with 75 additions and 74 deletions.
2 changes: 1 addition & 1 deletion Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2465,7 +2465,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion Marlin/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* here we define this default string as the date where the latest release
* version was tagged.
*/
//#define STRING_DISTRIBUTION_DATE "2024-11-05"
//#define STRING_DISTRIBUTION_DATE "2024-11-19"

#define STRING_DISTRIBUTION_DATE __DATE__
#define STRING_DISTRIBUTION_TIME __TIME__
Expand Down
2 changes: 1 addition & 1 deletion Marlin/src/gcode/probe/M851.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void GcodeSuite::M851() {
// Save the new offsets
if (ok) {
probe.offset = offs;
TERN_(PROUI_EX, ApplyPhySet();)
TERN_(PROUI_EX, ProEx.ApplyPhySet();)
}
}

Expand Down
2 changes: 1 addition & 1 deletion Marlin/src/inc/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
* version was tagged.
*/
#ifndef STRING_DISTRIBUTION_DATE
#define STRING_DISTRIBUTION_DATE "2024-11-05"
#define STRING_DISTRIBUTION_DATE "2024-11-19"
#endif

/**
Expand Down
29 changes: 15 additions & 14 deletions Marlin/src/lcd/e3v2/proui/dwin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2161,7 +2161,7 @@ void DWIN_SetDataDefaults() {
const uint8_t _def[] = DEF_TBOPT;
for (uint8_t i = 0; i < TBMaxOpt; ++i) PRO_data.TBopt[i] = _def[i];
#endif
SetData();
ProEx.SetData();
#else
#if HAS_BED_PROBE
HMI_data.zprobefeedslow = DEF_Z_PROBE_FEEDRATE_SLOW;
Expand Down Expand Up @@ -2189,7 +2189,9 @@ void DWIN_CopySettingsFrom(PGM_P const buff) {
DEBUG_ECHOLNPGM("DWIN_CopySettingsFrom");
memcpy(&HMI_data, buff, sizeof(HMI_data_t));
TERN_(PROUI_EX, memcpy(&PRO_data, buff + sizeof(HMI_data_t), sizeof(PRO_data_t));)
#if ANY(PROUI_EX, MESH_BED_LEVELING)
#if PROUI_EX
ProEx.SetData();
#elif ENABLED(MESH_BED_LEVELING)
SetData();
#endif
DWINUI::SetColors(HMI_data.Text_Color, HMI_data.Background_Color, HMI_data.TitleBg_Color);
Expand Down Expand Up @@ -2568,8 +2570,8 @@ void ApplyMove() {

#if HAS_BED_PROBE

void SetProbeOffsetX() { SetPFloatOnClick(-60, 60, UNITFDIGITS, TERN(PROUI_EX, ApplyPhySet, nullptr)); }
void SetProbeOffsetY() { SetPFloatOnClick(-60, 60, UNITFDIGITS, TERN(PROUI_EX, ApplyPhySet, nullptr)); }
void SetProbeOffsetX() { SetPFloatOnClick(-60, 60, UNITFDIGITS, TERN(PROUI_EX, ProEx.ApplyPhySet, nullptr)); }
void SetProbeOffsetY() { SetPFloatOnClick(-60, 60, UNITFDIGITS, TERN(PROUI_EX, ProEx.ApplyPhySet, nullptr)); }
void SetProbeOffsetZ() { SetPFloatOnClick(-10, 10, 2); }
void SetProbeZSpeed() { SetPIntOnClick(60, 1000); }
#if DISABLED(BD_SENSOR)
Expand Down Expand Up @@ -3117,10 +3119,9 @@ void ApplyMaxAccel() { planner.set_max_acceleration(HMI_value.axis, MenuData.Val
#endif
#endif

#if ANY(PROUI_EX, MESH_BED_LEVELING)
#if !PROUI_EX && ENABLED(MESH_BED_LEVELING)
void ApplyPhySet() {
TERN_(PROUI_EX, ProEx.CheckParkingPos();)
TERN_(MESH_BED_LEVELING, bedlevel.initialize();)
bedlevel.initialize();
update_software_endstops(X_AXIS);
update_software_endstops(Y_AXIS);
update_software_endstops(Z_AXIS);
Expand All @@ -3131,13 +3132,13 @@ void ApplyMaxAccel() { planner.set_max_acceleration(HMI_value.axis, MenuData.Val
#endif

#if PROUI_EX
void SetBedSizeX() { HMI_value.axis = NO_AXIS_ENUM; SetPIntOnClick(X_BED_MIN, X_MAX_POS, ApplyPhySet); }
void SetBedSizeY() { HMI_value.axis = NO_AXIS_ENUM; SetPIntOnClick(Y_BED_MIN, Y_MAX_POS, ApplyPhySet); }
void SetMinPosX() { HMI_value.axis = X_AXIS; SetPIntOnClick( -100, 100, ApplyPhySet); }
void SetMinPosY() { HMI_value.axis = Y_AXIS; SetPIntOnClick( -100, 100, ApplyPhySet); }
void SetMaxPosX() { HMI_value.axis = X_AXIS; SetPIntOnClick(X_BED_MIN, 999, ApplyPhySet); }
void SetMaxPosY() { HMI_value.axis = Y_AXIS; SetPIntOnClick(Y_BED_MIN, 999, ApplyPhySet); }
void SetMaxPosZ() { HMI_value.axis = Z_AXIS; SetPIntOnClick( 100, 999, ApplyPhySet); }
void SetBedSizeX() { HMI_value.axis = NO_AXIS_ENUM; SetPIntOnClick(X_BED_MIN, X_MAX_POS, ProEx.ApplyPhySet); }
void SetBedSizeY() { HMI_value.axis = NO_AXIS_ENUM; SetPIntOnClick(Y_BED_MIN, Y_MAX_POS, ProEx.ApplyPhySet); }
void SetMinPosX() { HMI_value.axis = X_AXIS; SetPIntOnClick( -100, 100, ProEx.ApplyPhySet); }
void SetMinPosY() { HMI_value.axis = Y_AXIS; SetPIntOnClick( -100, 100, ProEx.ApplyPhySet); }
void SetMaxPosX() { HMI_value.axis = X_AXIS; SetPIntOnClick(X_BED_MIN, 999, ProEx.ApplyPhySet); }
void SetMaxPosY() { HMI_value.axis = Y_AXIS; SetPIntOnClick(Y_BED_MIN, 999, ProEx.ApplyPhySet); }
void SetMaxPosZ() { HMI_value.axis = Z_AXIS; SetPIntOnClick( 100, 999, ProEx.ApplyPhySet); }
#endif

#if HAS_EXTRUDERS
Expand Down
2 changes: 1 addition & 1 deletion Marlin/src/lcd/e3v2/proui/dwin.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ void ResetEeprom();
#if ALL(HAS_BLTOUCH_HS_MODE, HS_MENU_ITEM)
void SetHSMode();
#endif
#if ANY(PROUI_EX, MESH_BED_LEVELING)
#if !PROUI_EX && ENABLED(MESH_BED_LEVELING)
void ApplyPhySet();
void SetData();
#endif
Expand Down
6 changes: 3 additions & 3 deletions Marlin/src/module/motion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1430,11 +1430,11 @@ void restore_feedrate_and_scaling() {
OPTARG(HAS_HOTEND_OFFSET, const uint8_t old_tool_index/*=0*/, const uint8_t new_tool_index/*=0*/)
) {

// #if PROUI_EX
#if PROUI_EX

// ProEx.UpdateAxis(axis);
ProEx.UpdateAxis(axis);

#if ENABLED(DUAL_X_CARRIAGE)
#elif ENABLED(DUAL_X_CARRIAGE)

if (axis == X_AXIS) {

Expand Down
2 changes: 1 addition & 1 deletion configurations/Andrew427/Configuration-MP.h
Original file line number Diff line number Diff line change
Expand Up @@ -2463,7 +2463,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/Andrew427/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/BTT_SKR-Mini-E3-V2/MM/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/BTT_SKR-Mini-E3-V2/MM/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* here we define this default string as the date where the latest release
* version was tagged.
*/
//#define STRING_DISTRIBUTION_DATE "2024-11-05"
//#define STRING_DISTRIBUTION_DATE "2024-11-19"

#define STRING_DISTRIBUTION_DATE __DATE__
#define STRING_DISTRIBUTION_TIME __TIME__
Expand Down
2 changes: 1 addition & 1 deletion configurations/BTT_SKR-Mini-E3-V2/UBL/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/BTT_SKR-Mini-E3-V2/UBL/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* here we define this default string as the date where the latest release
* version was tagged.
*/
//#define STRING_DISTRIBUTION_DATE "2024-11-05"
//#define STRING_DISTRIBUTION_DATE "2024-11-19"

#define STRING_DISTRIBUTION_DATE __DATE__
#define STRING_DISTRIBUTION_TIME __TIME__
Expand Down
2 changes: 1 addition & 1 deletion configurations/BTT_SKR-Mini-E3-V3/MM/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/BTT_SKR-Mini-E3-V3/MM/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* here we define this default string as the date where the latest release
* version was tagged.
*/
//#define STRING_DISTRIBUTION_DATE "2024-11-05"
//#define STRING_DISTRIBUTION_DATE "2024-11-19"

#define STRING_DISTRIBUTION_DATE __DATE__
#define STRING_DISTRIBUTION_TIME __TIME__
Expand Down
2 changes: 1 addition & 1 deletion configurations/BTT_SKR-Mini-E3-V3/UBL/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/BTT_SKR-Mini-E3-V3/UBL/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* here we define this default string as the date where the latest release
* version was tagged.
*/
//#define STRING_DISTRIBUTION_DATE "2024-11-05"
//#define STRING_DISTRIBUTION_DATE "2024-11-19"

#define STRING_DISTRIBUTION_DATE __DATE__
#define STRING_DISTRIBUTION_TIME __TIME__
Expand Down
2 changes: 1 addition & 1 deletion configurations/Creality Ender/BLT/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/Creality Ender/BLT/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* here we define this default string as the date where the latest release
* version was tagged.
*/
//#define STRING_DISTRIBUTION_DATE "2024-11-05"
//#define STRING_DISTRIBUTION_DATE "2024-11-19"

#define STRING_DISTRIBUTION_DATE __DATE__
#define STRING_DISTRIBUTION_TIME __TIME__
Expand Down
2 changes: 1 addition & 1 deletion configurations/Creality Ender/Default/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/Creality Ender/Default/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* here we define this default string as the date where the latest release
* version was tagged.
*/
//#define STRING_DISTRIBUTION_DATE "2024-11-05"
//#define STRING_DISTRIBUTION_DATE "2024-11-19"

#define STRING_DISTRIBUTION_DATE __DATE__
#define STRING_DISTRIBUTION_TIME __TIME__
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2460,7 +2460,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/Creality Ender/E3-Free-runs/MM/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* here we define this default string as the date where the latest release
* version was tagged.
*/
//#define STRING_DISTRIBUTION_DATE "2024-11-05"
//#define STRING_DISTRIBUTION_DATE "2024-11-19"

#define STRING_DISTRIBUTION_DATE __DATE__
#define STRING_DISTRIBUTION_TIME __TIME__
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2460,7 +2460,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/Creality Ender/E3-Free-runs/UBL/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* here we define this default string as the date where the latest release
* version was tagged.
*/
//#define STRING_DISTRIBUTION_DATE "2024-11-05"
//#define STRING_DISTRIBUTION_DATE "2024-11-19"

#define STRING_DISTRIBUTION_DATE __DATE__
#define STRING_DISTRIBUTION_TIME __TIME__
Expand Down
2 changes: 1 addition & 1 deletion configurations/Creality Ender/MM/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/Creality Ender/MM/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* here we define this default string as the date where the latest release
* version was tagged.
*/
//#define STRING_DISTRIBUTION_DATE "2024-11-05"
//#define STRING_DISTRIBUTION_DATE "2024-11-19"

#define STRING_DISTRIBUTION_DATE __DATE__
#define STRING_DISTRIBUTION_TIME __TIME__
Expand Down
2 changes: 1 addition & 1 deletion configurations/Creality Ender/S1/UBL/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2460,7 +2460,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/Creality Ender/S1/UBL/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* here we define this default string as the date where the latest release
* version was tagged.
*/
//#define STRING_DISTRIBUTION_DATE "2024-11-05"
//#define STRING_DISTRIBUTION_DATE "2024-11-19"

#define STRING_DISTRIBUTION_DATE __DATE__
#define STRING_DISTRIBUTION_TIME __TIME__
Expand Down
2 changes: 1 addition & 1 deletion configurations/Creality Ender/UBL/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/Creality Ender/UBL/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* here we define this default string as the date where the latest release
* version was tagged.
*/
//#define STRING_DISTRIBUTION_DATE "2024-11-05"
//#define STRING_DISTRIBUTION_DATE "2024-11-19"

#define STRING_DISTRIBUTION_DATE __DATE__
#define STRING_DISTRIBUTION_TIME __TIME__
Expand Down
2 changes: 1 addition & 1 deletion configurations/Voxelab Aquila 427/BLT/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/Voxelab Aquila 427/BLT/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* here we define this default string as the date where the latest release
* version was tagged.
*/
//#define STRING_DISTRIBUTION_DATE "2024-11-05"
//#define STRING_DISTRIBUTION_DATE "2024-11-19"

#define STRING_DISTRIBUTION_DATE __DATE__
#define STRING_DISTRIBUTION_TIME __TIME__
Expand Down
2 changes: 1 addition & 1 deletion configurations/Voxelab Aquila 427/Default/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/Voxelab Aquila 427/Default/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* here we define this default string as the date where the latest release
* version was tagged.
*/
//#define STRING_DISTRIBUTION_DATE "2024-11-05"
//#define STRING_DISTRIBUTION_DATE "2024-11-19"

#define STRING_DISTRIBUTION_DATE __DATE__
#define STRING_DISTRIBUTION_TIME __TIME__
Expand Down
2 changes: 1 addition & 1 deletion configurations/Voxelab Aquila 427/MM/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,7 @@
// When enabled Marlin will send a busy status message to the host
// every couple of seconds when it can't accept commands.
//
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
//#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages
#define DEFAULT_KEEPALIVE_INTERVAL 5 // Number of seconds between "busy" messages. Set with M113.
#define BUSY_WHILE_HEATING // Some hosts require "busy" messages even during heating

Expand Down
2 changes: 1 addition & 1 deletion configurations/Voxelab Aquila 427/MM/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* here we define this default string as the date where the latest release
* version was tagged.
*/
//#define STRING_DISTRIBUTION_DATE "2024-11-05"
//#define STRING_DISTRIBUTION_DATE "2024-11-19"

#define STRING_DISTRIBUTION_DATE __DATE__
#define STRING_DISTRIBUTION_TIME __TIME__
Expand Down
Loading

0 comments on commit 6d4c0e4

Please sign in to comment.