From 59378db7de0dec95d9c9fba6bcefc1c523ad6ef2 Mon Sep 17 00:00:00 2001 From: Roxy-3D Date: Fri, 11 Oct 2019 17:11:24 -0500 Subject: [PATCH] Eliminate clutter in Formbot T-Rex 3 Configuration.h file The extra clutter was making the Junction Deviation patch script calculate the wrong value. (The script wasn't smart enough to see the extra lines were commented out and used the wrong values in the calculation.) All fixed now with a JUNCTION_DEVIATION_MM calculated at .017 --- config/examples/Formbot/T_Rex_3/Configuration.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/config/examples/Formbot/T_Rex_3/Configuration.h b/config/examples/Formbot/T_Rex_3/Configuration.h index ac57b0bece..5f7f89399f 100644 --- a/config/examples/Formbot/T_Rex_3/Configuration.h +++ b/config/examples/Formbot/T_Rex_3/Configuration.h @@ -762,10 +762,6 @@ * M204 T Travel Acceleration */ -//#define DEFAULT_ACCELERATION 3000 // X, Y, Z and E acceleration for printing moves -//#define DEFAULT_RETRACT_ACCELERATION 3000 // E acceleration for retracts -//#define DEFAULT_TRAVEL_ACCELERATION 3000 // X, Y, Z acceleration for travel (non printing) moves - #define DEFAULT_ACCELERATION 1500 // X, Y, Z and E acceleration for printing moves #define DEFAULT_RETRACT_ACCELERATION 1500 // E acceleration for retracts #define DEFAULT_TRAVEL_ACCELERATION 1500 // X, Y, Z acceleration for travel (non printing) moves @@ -800,7 +796,7 @@ * http://blog.kyneticcnc.com/2018/10/computing-junction-deviation-for-marlin.html */ #if DISABLED(CLASSIC_JERK) - #define JUNCTION_DEVIATION_MM 0.009 // (mm) Distance from real junction edge + #define JUNCTION_DEVIATION_MM 0.017 // (mm) Distance from real junction edge #endif /**