Bladeren bron

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.
Roxy-3D 5 jaren geleden
bovenliggende
commit
c8e348731f
No account linked to committer's email address
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1
    1
      config/examples/Formbot/Raptor/Configuration.h

+ 1
- 1
config/examples/Formbot/Raptor/Configuration.h Bestand weergeven

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

Laden…
Annuleren
Opslaan