Browse Source

Combine if block related to SERVO_ENDSTOPS

pull/1/head
Scott Lahteine 9 years ago
committed by Richard Wackerbarth
parent
commit
3b2b2313ff
  1. 8
      Marlin/Marlin_main.cpp

8
Marlin/Marlin_main.cpp

@ -1677,11 +1677,9 @@ static void homeaxis(AxisEnum axis) {
#endif
#ifdef SERVO_ENDSTOPS
if (axis != Z_AXIS) {
// Engage Servo endstop if enabled
if (servo_endstops[axis] >= 0)
servo[servo_endstops[axis]].move(servo_endstop_angles[axis * 2]);
}
// Engage Servo endstop if enabled
if (axis != Z_AXIS && servo_endstops[axis] >= 0)
servo[servo_endstops[axis]].move(servo_endstop_angles[axis][0]);
#endif
// Set a flag for Z motor locking

Loading…
Cancel
Save