mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-07-22 06:03:55 -06:00
Set Junction Deviation value from Jerk and Default Acceleration (#15509)
Formula: `0.4 * sq(min(xjerk, yjerk)) / (default accel)`
This commit is contained in:
parent
6f60838736
commit
2cf35267c4
118 changed files with 123 additions and 146 deletions
|
@ -772,8 +772,8 @@
|
|||
*/
|
||||
//#define CLASSIC_JERK
|
||||
#if ENABLED(CLASSIC_JERK)
|
||||
#define DEFAULT_XJERK 0
|
||||
#define DEFAULT_YJERK 0
|
||||
#define DEFAULT_XJERK 2
|
||||
#define DEFAULT_YJERK 2
|
||||
#define DEFAULT_ZJERK 0.6
|
||||
|
||||
//#define LIMITED_JERK_EDITING // Limit edit via M205 or LCD to DEFAULT_aJERK * 2
|
||||
|
@ -792,7 +792,7 @@
|
|||
* http://blog.kyneticcnc.com/2018/10/computing-junction-deviation-for-marlin.html
|
||||
*/
|
||||
#if DISABLED(CLASSIC_JERK)
|
||||
#define JUNCTION_DEVIATION_MM 0.02 // (mm) Distance from real junction edge
|
||||
#define JUNCTION_DEVIATION_MM 0.001 // (mm) Distance from real junction edge
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue