From 3559e360d8962de6c01c85da845d55af69ac3486 Mon Sep 17 00:00:00 2001 From: Sophist <3001893+Sophist-UK@users.noreply.github.com> Date: Thu, 7 Mar 2024 23:02:33 +0000 Subject: [PATCH] Update JD radius to maximum --- Marlin/Configuration.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 858faa1adc22..bf7a8974894a 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -1566,7 +1566,8 @@ // DE200: According to https://blog.kyneticcnc.com/2018/10/computing-junction-deviation-for-marlin.html // d = 0.4 * Jerk^2 / Acceleration = 0.4 * DEFAULT_XJERK * DEFAULT_YJERK / DEFAULT_ACCELERATION - #define JUNCTION_DEVIATION_MM (0.4 * 20 * 20 / DEFAULT_ACCELERATION) // For normal Dagoma settings 0.05333 + // Normal Dagoma settings would be 0.05333 + #define JUNCTION_DEVIATION_MM 0.3 // 0.3 is maximum on UI and gives good corners #define JD_HANDLE_SMALL_SEGMENTS // Use curvature estimation instead of just the junction angle // for small segments (< 1mm) with large junction angles (> 135°).