Use logic in Z_SAFE_HOMING
Use logic in Z_SAFE_HOMING From ``` if (home_all_axis || homeZ) { if (home_all_axis) { ... home z } else if (homeZ) { // Don't need to Home Z twice home z } } ``` to ``` if (home_all_axis || homeZ) { if (home_all_axis) { ... } home z } ```2.0.x
parent
de3a169336
commit
0ea6247fc2
Loading…
Reference in New Issue