Browse Source

Fix HOMING_BUMP_DIVISOR for deltas configuration

* Re-bump speed divisor should be the same for delta printer.
Christian Lefrançois 9 years ago
parent
commit
8347a9d6e4

+ 1
- 1
Marlin/example_configurations/delta/biv2.5/Configuration_adv.h View File

@@ -222,7 +222,7 @@
222 222
 #define X_HOME_BUMP_MM 5
223 223
 #define Y_HOME_BUMP_MM 5
224 224
 #define Z_HOME_BUMP_MM 5 // deltas need the same for all three axis
225
-#define HOMING_BUMP_DIVISOR {10, 10, 20}  // Re-Bump Speed Divisor (Divides the Homing Feedrate)
225
+#define HOMING_BUMP_DIVISOR {10, 10, 10}  // Re-Bump Speed Divisor (Divides the Homing Feedrate)
226 226
 //#define QUICK_HOME  //if this is defined, if both x and y are to be homed, a diagonal move will be performed initially.
227 227
 
228 228
 // When G28 is called, this option will make Y home before X

+ 1
- 1
Marlin/example_configurations/delta/generic/Configuration_adv.h View File

@@ -222,7 +222,7 @@
222 222
 #define X_HOME_BUMP_MM 5
223 223
 #define Y_HOME_BUMP_MM 5
224 224
 #define Z_HOME_BUMP_MM 5 // deltas need the same for all three axis
225
-#define HOMING_BUMP_DIVISOR {10, 10, 20}  // Re-Bump Speed Divisor (Divides the Homing Feedrate)
225
+#define HOMING_BUMP_DIVISOR {10, 10, 10}  // Re-Bump Speed Divisor (Divides the Homing Feedrate)
226 226
 //#define QUICK_HOME  //if this is defined, if both x and y are to be homed, a diagonal move will be performed initially.
227 227
 
228 228
 // When G28 is called, this option will make Y home before X

+ 1
- 1
Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h View File

@@ -222,7 +222,7 @@
222 222
 #define X_HOME_BUMP_MM 5
223 223
 #define Y_HOME_BUMP_MM 5
224 224
 #define Z_HOME_BUMP_MM 5 // deltas need the same for all three axis
225
-#define HOMING_BUMP_DIVISOR {10, 10, 20}  // Re-Bump Speed Divisor (Divides the Homing Feedrate)
225
+#define HOMING_BUMP_DIVISOR {10, 10, 10}  // Re-Bump Speed Divisor (Divides the Homing Feedrate)
226 226
 //#define QUICK_HOME  //if this is defined, if both x and y are to be homed, a diagonal move will be performed initially.
227 227
 
228 228
 // When G28 is called, this option will make Y home before X

+ 1
- 1
Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h View File

@@ -254,7 +254,7 @@
254 254
 #define X_HOME_BUMP_MM 5
255 255
 #define Y_HOME_BUMP_MM 5
256 256
 #define Z_HOME_BUMP_MM 5 // deltas need the same for all three axis
257
-#define HOMING_BUMP_DIVISOR {10, 10, 20}  // Re-Bump Speed Divisor (Divides the Homing Feedrate)
257
+#define HOMING_BUMP_DIVISOR {10, 10, 10}  // Re-Bump Speed Divisor (Divides the Homing Feedrate)
258 258
 //#define QUICK_HOME  //if this is defined, if both x and y are to be homed, a diagonal move will be performed initially.
259 259
 
260 260
 // When G28 is called, this option will make Y home before X

Loading…
Cancel
Save