Fix "G29" G29_MAX_RETRIES handling

This commit is contained in:
Scott Lahteine 2018-06-29 16:38:24 -05:00
parent 42f9921482
commit a264030526

View file

@ -138,9 +138,9 @@ void GcodeSuite::dwell(millis_t time) {
void GcodeSuite::G29_with_retry() {
set_bed_leveling_enabled(false);
for (uint8_t i = G29_MAX_RETRIES; i--;) {
for (uint8_t retries_left = G29_MAX_RETRIES;;) {
G29();
if (planner.leveling_active) break;
if (planner.leveling_active || !retries_left--) break;
#ifdef G29_ACTION_ON_RECOVER
SERIAL_ECHOLNPGM("//action:" G29_ACTION_ON_RECOVER);
#endif