Skip to content

Commit 3adf73a

Browse files
authored
🔥 Remove ALLOW_LOW_EJERK (MarlinFirmware#26712)
1 parent eb7b207 commit 3adf73a

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

Marlin/Configuration_adv.h

-3
Original file line numberDiff line numberDiff line change
@@ -2320,9 +2320,6 @@
23202320
#endif
23212321
//#define ADVANCE_K_EXTRA // Add a second linear advance constant, configurable with M900 L.
23222322
//#define LA_DEBUG // Print debug information to serial during operation. Disable for production use.
2323-
#if ENABLED(CLASSIC_JERK)
2324-
//#define ALLOW_LOW_EJERK // Allow a DEFAULT_EJERK value of <10. Recommended for direct drive hotends.
2325-
#endif
23262323
//#define EXPERIMENTAL_I2S_LA // Allow I2S_STEPPER_STREAM to be used with LA. Performance degrades as the LA step rate reaches ~20kHz.
23272324
#endif
23282325

Marlin/src/inc/Changes.h

+2
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@
8282
#error "Z_ENDSTOP_SERVO_NR is now Z_PROBE_SERVO_NR."
8383
#elif defined(DEFAULT_XYJERK)
8484
#error "DEFAULT_XYJERK is deprecated. Use DEFAULT_XJERK and DEFAULT_YJERK instead."
85+
#elif defined(ALLOW_LOW_EJERK)
86+
#error "ALLOW_LOW_EJERK is deprecated and should be removed."
8587
#elif defined(XY_TRAVEL_SPEED)
8688
#error "XY_TRAVEL_SPEED is now XY_PROBE_FEEDRATE."
8789
#elif defined(XY_PROBE_SPEED)

Marlin/src/inc/SanityCheck.h

-2
Original file line numberDiff line numberDiff line change
@@ -828,8 +828,6 @@ static_assert(COUNT(arm) == LOGICAL_AXES, "AXIS_RELATIVE_MODES must contain " _L
828828

829829
#if ENABLED(DIRECT_STEPPING)
830830
#error "DIRECT_STEPPING is incompatible with LIN_ADVANCE. (Extrusion is controlled externally by the Step Daemon.)"
831-
#elif NONE(HAS_JUNCTION_DEVIATION, ALLOW_LOW_EJERK) && defined(DEFAULT_EJERK)
832-
static_assert(DEFAULT_EJERK >= 10, "It is strongly recommended to set DEFAULT_EJERK >= 10 when using LIN_ADVANCE. Enable ALLOW_LOW_EJERK to bypass this alert (e.g., for direct drive).");
833831
#endif
834832
#endif
835833

0 commit comments

Comments
 (0)