Drop E element from homing_feedrate_mm_s

This commit is contained in:
Scott Lahteine
2019-01-23 19:25:57 -06:00
parent 95223cb28e
commit 0358ffcd4c
2 changed files with 3 additions and 3 deletions

View File

@ -71,7 +71,7 @@ extern float cartes[XYZ];
* Feed rates are often configured with mm/m
* but the planner and stepper like mm/s units.
*/
extern const float homing_feedrate_mm_s[4];
extern const float homing_feedrate_mm_s[XYZ];
FORCE_INLINE float homing_feedrate(const AxisEnum a) { return pgm_read_float(&homing_feedrate_mm_s[a]); }
extern float feedrate_mm_s;