Lose the old HOMEAXIS macro

This commit is contained in:
Scott Lahteine
2018-06-30 18:13:13 -05:00
parent 2421f3a47d
commit 90ba77ea0f
3 changed files with 11 additions and 12 deletions

View File

@ -278,9 +278,9 @@ bool home_delta() {
// At least one carriage has reached the top.
// Now re-home each carriage separately.
HOMEAXIS(A);
HOMEAXIS(B);
HOMEAXIS(C);
homeaxis(A_AXIS);
homeaxis(B_AXIS);
homeaxis(C_AXIS);
// Set all carriages to their home positions
// Do this here all at once for Delta, because

View File

@ -189,7 +189,6 @@ void clean_up_after_endstop_or_probe_move();
void set_axis_is_at_home(const AxisEnum axis);
void homeaxis(const AxisEnum axis);
#define HOMEAXIS(A) homeaxis(_AXIS(A))
#if ENABLED(SENSORLESS_HOMING)
void sensorless_homing_per_axis(const AxisEnum axis, const bool enable=true);