Browse Source
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 } ```pull/1/head
AnHardt
9 years ago
1 changed files with 20 additions and 26 deletions
Loading…
Reference in new issue