🔧 Move DEFAULT_EJERK

MarlinFirmware/Marlin#26665

Co-Authored-By: Vovodroid <8691781+vovodroid@users.noreply.github.com>
This commit is contained in:
Scott Lahteine 2024-01-19 14:19:04 -06:00
parent 815bbdb15e
commit 2e76a370dd
716 changed files with 1432 additions and 1074 deletions

View file

@ -1316,6 +1316,7 @@
#define DEFAULT_XJERK 8.0
#define DEFAULT_YJERK DEFAULT_XJERK
#define DEFAULT_ZJERK DEFAULT_XJERK // Must be same as XY for delta
#define DEFAULT_EJERK 5.0
//#define DEFAULT_IJERK 0.3
//#define DEFAULT_JJERK 0.3
//#define DEFAULT_KJERK 0.3
@ -1331,8 +1332,6 @@
#endif
#endif
#define DEFAULT_EJERK 5.0 // May be used by Linear Advance
/**
* Junction Deviation Factor
*

View file

@ -2345,7 +2345,9 @@
#endif
#define ADVANCE_K_EXTRA // Add a second linear advance constant, configurable with M900 L.
//#define LA_DEBUG // Print debug information to serial during operation. Disable for production use.
#define ALLOW_LOW_EJERK // Allow a DEFAULT_EJERK value of <10. Recommended for direct drive hotends.
#if ENABLED(CLASSIC_JERK)
#define ALLOW_LOW_EJERK // Allow a DEFAULT_EJERK value of <10. Recommended for direct drive hotends.
#endif
//#define EXPERIMENTAL_I2S_LA // Allow I2S_STEPPER_STREAM to be used with LA. Performance degrades as the LA step rate reaches ~20kHz.
#endif