|
@@ -687,10 +687,12 @@ static void homeaxis(int axis) {
|
687
|
687
|
0) {
|
688
|
688
|
|
689
|
689
|
// Engage Servo endstop if enabled
|
690
|
|
- #ifdef SERVO_ENDSTOPS[axis] > -1
|
691
|
|
- servos[servo_endstops[axis]].write(servo_endstop_angles[axis * 2]);
|
|
690
|
+ #ifdef SERVO_ENDSTOPS
|
|
691
|
+ if (SERVO_ENDSTOPS[axis] > -1) {
|
|
692
|
+ servos[servo_endstops[axis]].write(servo_endstop_angles[axis * 2]);
|
|
693
|
+ }
|
692
|
694
|
#endif
|
693
|
|
-
|
|
695
|
+
|
694
|
696
|
current_position[axis] = 0;
|
695
|
697
|
plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
|
696
|
698
|
destination[axis] = 1.5 * max_length(axis) * home_dir(axis);
|
|
@@ -715,8 +717,10 @@ static void homeaxis(int axis) {
|
715
|
717
|
endstops_hit_on_purpose();
|
716
|
718
|
|
717
|
719
|
// Retract Servo endstop if enabled
|
718
|
|
- #ifdef SERVO_ENDSTOPS[axis] > -1
|
719
|
|
- servos[servo_endstops[axis]].write(servo_endstop_angles[axis * 2 + 1]);
|
|
720
|
+ #ifdef SERVO_ENDSTOPS
|
|
721
|
+ if (SERVO_ENDSTOPS[axis] > -1) {
|
|
722
|
+ servos[servo_endstops[axis]].write(servo_endstop_angles[axis * 2 + 1]);
|
|
723
|
+ }
|
720
|
724
|
#endif
|
721
|
725
|
}
|
722
|
726
|
}
|