When homing with Z probe bump at Z_PROBE_SPEED_SLOW

This commit is contained in:
Scott Lahteine 2018-04-28 08:48:49 -05:00
parent f0494b4021
commit b4ddee8beb

View File

@ -1552,6 +1552,9 @@ static void set_axis_is_at_home(const AxisEnum axis) {
* Some planner shorthand inline functions
*/
inline float get_homing_bump_feedrate(const AxisEnum axis) {
#if HOMING_Z_WITH_PROBE
if (axis == Z_AXIS) return Z_PROBE_SPEED_SLOW;
#endif
static const uint8_t homing_bump_divisor[] PROGMEM = HOMING_BUMP_DIVISOR;
uint8_t hbd = pgm_read_byte(&homing_bump_divisor[axis]);
if (hbd < 1) {