Browse Source

Simpler G28 home axis conditions

pull/1/head
Scott Lahteine 5 years ago
parent
commit
3c179bbd47
  1. 10
      Marlin/src/gcode/calibrate/G28.cpp

10
Marlin/src/gcode/calibrate/G28.cpp

@ -260,13 +260,9 @@ void GcodeSuite::G28(const bool always_home_all) {
#else // NOT DELTA
const bool homeX = always_home_all || parser.seen('X'),
homeY = always_home_all || parser.seen('Y'),
homeZ = always_home_all || parser.seen('Z'),
home_all = (!homeX && !homeY && !homeZ) || (homeX && homeY && homeZ),
doX = home_all || homeX,
doY = home_all || homeY,
doZ = home_all || homeZ;
const bool homeX = parser.seen('X'), homeY = parser.seen('Y'), homeZ = parser.seen('Z'),
home_all = always_home_all || (homeX == homeY && homeX == homeZ),
doX = home_all || homeX, doY = home_all || homeY, doZ = home_all || homeZ;
set_destination_from_current();

Loading…
Cancel
Save