Browse Source

tweaked acceleration limits and babystepping config

Thomas B 3 years ago
parent
commit
34d9d76be2
2 changed files with 7 additions and 7 deletions
  1. 5
    5
      Marlin/Configuration.h
  2. 2
    2
      Marlin/Configuration_adv.h

+ 5
- 5
Marlin/Configuration.h View File

751
  * Override with M201
751
  * Override with M201
752
  *                                      X, Y, Z, E0 [, E1[, E2...]]
752
  *                                      X, Y, Z, E0 [, E1[, E2...]]
753
  */
753
  */
754
-#define DEFAULT_MAX_ACCELERATION      { 200, 200, 50, 2000 }
754
+#define DEFAULT_MAX_ACCELERATION      { 150, 150, 40, 200 }
755
 
755
 
756
 //#define LIMITED_MAX_ACCEL_EDITING     // Limit edit via M201 or LCD to DEFAULT_MAX_ACCELERATION * 2
756
 //#define LIMITED_MAX_ACCEL_EDITING     // Limit edit via M201 or LCD to DEFAULT_MAX_ACCELERATION * 2
757
 #if ENABLED(LIMITED_MAX_ACCEL_EDITING)
757
 #if ENABLED(LIMITED_MAX_ACCEL_EDITING)
766
  *   M204 R    Retract Acceleration
766
  *   M204 R    Retract Acceleration
767
  *   M204 T    Travel Acceleration
767
  *   M204 T    Travel Acceleration
768
  */
768
  */
769
-#define DEFAULT_ACCELERATION          300    // X, Y, Z and E acceleration for printing moves
770
-#define DEFAULT_RETRACT_ACCELERATION  300    // E acceleration for retracts
771
-#define DEFAULT_TRAVEL_ACCELERATION   300    // X, Y, Z acceleration for travel (non printing) moves
769
+#define DEFAULT_ACCELERATION          150    // X, Y, Z and E acceleration for printing moves
770
+#define DEFAULT_RETRACT_ACCELERATION  200    // E acceleration for retracts
771
+#define DEFAULT_TRAVEL_ACCELERATION   150    // X, Y, Z acceleration for travel (non printing) moves
772
 
772
 
773
 /**
773
 /**
774
  * Default Jerk limits (mm/s)
774
  * Default Jerk limits (mm/s)
813
  *
813
  *
814
  * See https://github.com/synthetos/TinyG/wiki/Jerk-Controlled-Motion-Explained
814
  * See https://github.com/synthetos/TinyG/wiki/Jerk-Controlled-Motion-Explained
815
  */
815
  */
816
-//#define S_CURVE_ACCELERATION
816
+#define S_CURVE_ACCELERATION
817
 
817
 
818
 //===========================================================================
818
 //===========================================================================
819
 //============================= Z Probe Options =============================
819
 //============================= Z Probe Options =============================

+ 2
- 2
Marlin/Configuration_adv.h View File

1483
   #define BABYSTEP_WITHOUT_HOMING
1483
   #define BABYSTEP_WITHOUT_HOMING
1484
   #define BABYSTEP_XY                     // Also enable X/Y Babystepping. Not supported on DELTA!
1484
   #define BABYSTEP_XY                     // Also enable X/Y Babystepping. Not supported on DELTA!
1485
   #define BABYSTEP_INVERT_Z false           // Change if Z babysteps should go the other way
1485
   #define BABYSTEP_INVERT_Z false           // Change if Z babysteps should go the other way
1486
-  #define BABYSTEP_MULTIPLICATOR_Z  25       // Babysteps are very small. Increase for faster motion.
1487
-  #define BABYSTEP_MULTIPLICATOR_XY 25
1486
+  #define BABYSTEP_MULTIPLICATOR_Z  100       // Babysteps are very small. Increase for faster motion.
1487
+  #define BABYSTEP_MULTIPLICATOR_XY 100
1488
 
1488
 
1489
   #define DOUBLECLICK_FOR_Z_BABYSTEPPING  // Double-click on the Status Screen for Z Babystepping.
1489
   #define DOUBLECLICK_FOR_Z_BABYSTEPPING  // Double-click on the Status Screen for Z Babystepping.
1490
   #if ENABLED(DOUBLECLICK_FOR_Z_BABYSTEPPING)
1490
   #if ENABLED(DOUBLECLICK_FOR_Z_BABYSTEPPING)

Loading…
Cancel
Save