Correct Junction Deviation value for Formbot Raptors

Re-apply the formula .4 * V^2 / Default_Acceleration to work correctly in Raptor configuration.h file.
(The problem is there are multiple XJerk and YJerk values declared based on the step sticks used on the printer.)
This change should provide correct values for all setups.
This commit is contained in:
Roxy-3D 2019-10-11 16:52:47 -05:00 committed by GitHub
parent 7a1fa2177c
commit c8e348731f
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -867,7 +867,7 @@
* http://blog.kyneticcnc.com/2018/10/computing-junction-deviation-for-marlin.html
*/
#if DISABLED(CLASSIC_JERK)
#define JUNCTION_DEVIATION_MM 0.013 // (mm) Distance from real junction edge
#define JUNCTION_DEVIATION_MM (.4 * DEFAULT_YJERK * DEFAULT_YJERK / DEFAULT_ACCELERATION) // (mm) Distance from real junction edge
#endif
/**