From 01b1a5628eed524b3ad1153da4097b1b2bcc9036 Mon Sep 17 00:00:00 2001 From: Steven Haigh Date: Tue, 23 Jun 2026 13:40:39 +1000 Subject: [PATCH 1/2] [Ender 5 Plus] Fix build error in sanity checks Slow down! DEFAULT_MAX_FEEDRATE[E] * DEFAULT_AXIS_STEPS_PER_UNIT[E] > MAXIMUM_STEPPER_RATE (500000). DEFAULT_MAX_FEEDRATE = 15000, DEFAULT_AXIS_STEPS_PER_UNIT = 93.02 = 1395300 Change DEFAULT_MAX_FEEDRATE to 5000 to make the sanity check value 465100 - which is less than MAXIMUM_STEPPER_RATE (500000). --- .../Ender-5 Plus/CrealityV1 (RELOADED UI)/Configuration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/examples/Creality/Ender-5 Plus/CrealityV1 (RELOADED UI)/Configuration.h b/config/examples/Creality/Ender-5 Plus/CrealityV1 (RELOADED UI)/Configuration.h index 446b9d6b1e0..72c4032df50 100644 --- a/config/examples/Creality/Ender-5 Plus/CrealityV1 (RELOADED UI)/Configuration.h +++ b/config/examples/Creality/Ender-5 Plus/CrealityV1 (RELOADED UI)/Configuration.h @@ -1382,7 +1382,7 @@ * Override with M203 * X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]] */ -#define DEFAULT_MAX_FEEDRATE { 6250, 6250, 15, 15000 } +#define DEFAULT_MAX_FEEDRATE { 6250, 6250, 15, 5000 } //#define LIMITED_MAX_FR_EDITING // Limit edit via M203 or LCD to DEFAULT_MAX_FEEDRATE * 2 #if ENABLED(LIMITED_MAX_FR_EDITING) From e4b25f6c6b69a49bff22828bc77a80b00ef0c425 Mon Sep 17 00:00:00 2001 From: Steven Haigh Date: Tue, 23 Jun 2026 14:51:58 +1000 Subject: [PATCH 2/2] Fix other example configs here with the same issue too --- .../Creality/Ender-5 Plus/BigTreeTech SKR 3/Configuration.h | 2 +- .../Ender-5 Plus/Creality 4.2.2 (RELOADED UI)/Configuration.h | 2 +- .../Ender-5 Plus/CrealityV1 (ORIGIN UI)/Configuration.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/examples/Creality/Ender-5 Plus/BigTreeTech SKR 3/Configuration.h b/config/examples/Creality/Ender-5 Plus/BigTreeTech SKR 3/Configuration.h index 11fec5e2126..fd575eb5206 100644 --- a/config/examples/Creality/Ender-5 Plus/BigTreeTech SKR 3/Configuration.h +++ b/config/examples/Creality/Ender-5 Plus/BigTreeTech SKR 3/Configuration.h @@ -1373,7 +1373,7 @@ * Override with M203 * X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]] */ -#define DEFAULT_MAX_FEEDRATE { 6250, 6250, 15, 15000 } +#define DEFAULT_MAX_FEEDRATE { 6250, 6250, 15, 5000 } //#define LIMITED_MAX_FR_EDITING // Limit edit via M203 or LCD to DEFAULT_MAX_FEEDRATE * 2 #if ENABLED(LIMITED_MAX_FR_EDITING) diff --git a/config/examples/Creality/Ender-5 Plus/Creality 4.2.2 (RELOADED UI)/Configuration.h b/config/examples/Creality/Ender-5 Plus/Creality 4.2.2 (RELOADED UI)/Configuration.h index cef59f682a8..3570d0e9203 100644 --- a/config/examples/Creality/Ender-5 Plus/Creality 4.2.2 (RELOADED UI)/Configuration.h +++ b/config/examples/Creality/Ender-5 Plus/Creality 4.2.2 (RELOADED UI)/Configuration.h @@ -1379,7 +1379,7 @@ * Override with M203 * X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]] */ -#define DEFAULT_MAX_FEEDRATE { 6250, 6250, 15, 15000 } +#define DEFAULT_MAX_FEEDRATE { 6250, 6250, 15, 5000 } //#define LIMITED_MAX_FR_EDITING // Limit edit via M203 or LCD to DEFAULT_MAX_FEEDRATE * 2 #if ENABLED(LIMITED_MAX_FR_EDITING) diff --git a/config/examples/Creality/Ender-5 Plus/CrealityV1 (ORIGIN UI)/Configuration.h b/config/examples/Creality/Ender-5 Plus/CrealityV1 (ORIGIN UI)/Configuration.h index 2489570c5f7..11fb9bca45d 100644 --- a/config/examples/Creality/Ender-5 Plus/CrealityV1 (ORIGIN UI)/Configuration.h +++ b/config/examples/Creality/Ender-5 Plus/CrealityV1 (ORIGIN UI)/Configuration.h @@ -1382,7 +1382,7 @@ * Override with M203 * X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]] */ -#define DEFAULT_MAX_FEEDRATE { 6250, 6250, 15, 15000 } +#define DEFAULT_MAX_FEEDRATE { 6250, 6250, 15, 5000 } //#define LIMITED_MAX_FR_EDITING // Limit edit via M203 or LCD to DEFAULT_MAX_FEEDRATE * 2 #if ENABLED(LIMITED_MAX_FR_EDITING)