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
 #define X_HOME_BUMP_MM 5
222
 #define X_HOME_BUMP_MM 5
223
 #define Y_HOME_BUMP_MM 5
223
 #define Y_HOME_BUMP_MM 5
224
 #define Z_HOME_BUMP_MM 5 // deltas need the same for all three axis
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
 //#define QUICK_HOME  //if this is defined, if both x and y are to be homed, a diagonal move will be performed initially.
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
 // When G28 is called, this option will make Y home before X
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
 #define X_HOME_BUMP_MM 5
222
 #define X_HOME_BUMP_MM 5
223
 #define Y_HOME_BUMP_MM 5
223
 #define Y_HOME_BUMP_MM 5
224
 #define Z_HOME_BUMP_MM 5 // deltas need the same for all three axis
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
 //#define QUICK_HOME  //if this is defined, if both x and y are to be homed, a diagonal move will be performed initially.
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
 // When G28 is called, this option will make Y home before X
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
 #define X_HOME_BUMP_MM 5
222
 #define X_HOME_BUMP_MM 5
223
 #define Y_HOME_BUMP_MM 5
223
 #define Y_HOME_BUMP_MM 5
224
 #define Z_HOME_BUMP_MM 5 // deltas need the same for all three axis
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
 //#define QUICK_HOME  //if this is defined, if both x and y are to be homed, a diagonal move will be performed initially.
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
 // When G28 is called, this option will make Y home before X
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
 #define X_HOME_BUMP_MM 5
254
 #define X_HOME_BUMP_MM 5
255
 #define Y_HOME_BUMP_MM 5
255
 #define Y_HOME_BUMP_MM 5
256
 #define Z_HOME_BUMP_MM 5 // deltas need the same for all three axis
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
 //#define QUICK_HOME  //if this is defined, if both x and y are to be homed, a diagonal move will be performed initially.
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
 // When G28 is called, this option will make Y home before X
260
 // When G28 is called, this option will make Y home before X

Loading…
Cancel
Save