mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-07-06 22:47:35 -06:00
Patch Raptor JD factor
This commit is contained in:
parent
f8c711ad13
commit
290d8468ba
1 changed files with 8 additions and 6 deletions
|
@ -844,6 +844,13 @@
|
|||
* When changing speed and direction, if the difference is less than the
|
||||
* value set here, it may happen instantaneously.
|
||||
*/
|
||||
|
||||
#if ENABLED(Y_SPREADCYCLE) || DISABLED(Y_2208)
|
||||
#define DEFAULT_YJERK 10.0
|
||||
#else
|
||||
#define DEFAULT_YJERK 5.0
|
||||
#endif
|
||||
|
||||
//#define CLASSIC_JERK
|
||||
#if ENABLED(CLASSIC_JERK)
|
||||
#if ENABLED(X_SPREADCYCLE) || DISABLED(X_2208)
|
||||
|
@ -851,11 +858,6 @@
|
|||
#else
|
||||
#define DEFAULT_XJERK 10.0
|
||||
#endif
|
||||
#if ENABLED(Y_SPREADCYCLE) || DISABLED(Y_2208)
|
||||
#define DEFAULT_YJERK 10.0
|
||||
#else
|
||||
#define DEFAULT_YJERK 5.0
|
||||
#endif
|
||||
#define DEFAULT_ZJERK 0.4
|
||||
|
||||
//#define LIMITED_JERK_EDITING // Limit edit via M205 or LCD to DEFAULT_aJERK * 2
|
||||
|
@ -874,7 +876,7 @@
|
|||
* http://blog.kyneticcnc.com/2018/10/computing-junction-deviation-for-marlin.html
|
||||
*/
|
||||
#if DISABLED(CLASSIC_JERK)
|
||||
#define JUNCTION_DEVIATION_MM (.4 * DEFAULT_YJERK * DEFAULT_YJERK / DEFAULT_ACCELERATION) // (mm) Distance from real junction edge
|
||||
#define JUNCTION_DEVIATION_MM (.4 * sq(DEFAULT_YJERK) / DEFAULT_ACCELERATION) // (mm) Distance from real junction edge
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue