From dac5e95ae2870a07129081313fb854ca604b6d22 Mon Sep 17 00:00:00 2001 From: Ralf Vogler Date: Fri, 22 Oct 2021 20:54:28 +0200 Subject: [PATCH] try EXPERIMENTAL_SCURVE in LinAdv with CLASSIC_JERK instead of Junction Deviation https://github.com/MarlinFirmware/Marlin/issues/17342 --- Marlin/Configuration.h | 6 +++--- Marlin/Configuration_adv.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 0ba21d314efb..b18fa26ed5e8 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -975,7 +975,7 @@ * When changing speed and direction, if the difference is less than the * value set here, it may happen instantaneously. */ -//#define CLASSIC_JERK +#define CLASSIC_JERK #if ENABLED(CLASSIC_JERK) #define DEFAULT_XJERK 8.0 #define DEFAULT_YJERK 8.0 @@ -992,7 +992,7 @@ #endif #endif -#define DEFAULT_EJERK 5.0 // May be used by Linear Advance +#define DEFAULT_EJERK 10.0 // May be used by Linear Advance /** * Junction Deviation Factor @@ -1015,7 +1015,7 @@ * * See https://github.com/synthetos/TinyG/wiki/Jerk-Controlled-Motion-Explained */ -//#define S_CURVE_ACCELERATION +#define S_CURVE_ACCELERATION //=========================================================================== //============================= Z Probe Options ============================= diff --git a/Marlin/Configuration_adv.h b/Marlin/Configuration_adv.h index 7057776a6918..94c4b0c4c82d 100644 --- a/Marlin/Configuration_adv.h +++ b/Marlin/Configuration_adv.h @@ -1914,7 +1914,7 @@ //#define EXTRA_LIN_ADVANCE_K // Enable for second linear advance constants #define LIN_ADVANCE_K 0.07 // Unit: mm compression per 1mm/s extruder speed //#define LA_DEBUG // If enabled, this will generate debug information output over USB. - //#define EXPERIMENTAL_SCURVE // Enable this option to permit S-Curve Acceleration + #define EXPERIMENTAL_SCURVE // Enable this option to permit S-Curve Acceleration #endif // @section leveling