Fix missing return values in G33_auto_tune

This commit is contained in:
Scott Lahteine 2017-12-02 00:52:57 -06:00
parent e990fd23f1
commit 7bed539fdb

View File

@ -5552,7 +5552,7 @@ void home_all_axes() { gcode_G28(true); }
recalc_delta_settings();
endstops.enable(true);
if (!home_delta()) return;
if (!home_delta()) return false;
endstops.not_homing();
SERIAL_PROTOCOLPGM("Tuning E");
@ -5584,7 +5584,7 @@ void home_all_axes() { gcode_G28(true); }
recalc_delta_settings();
endstops.enable(true);
if (!home_delta()) return;
if (!home_delta()) return false;
endstops.not_homing();
SERIAL_PROTOCOLPGM("Tuning R");
@ -5610,7 +5610,7 @@ void home_all_axes() { gcode_G28(true); }
recalc_delta_settings();
endstops.enable(true);
if (!home_delta()) return;
if (!home_delta()) return false;
endstops.not_homing();
SERIAL_PROTOCOLPGM("Tuning T");
@ -5644,7 +5644,7 @@ void home_all_axes() { gcode_G28(true); }
a_fac *= norm; // Normalize to 0.83 for Kossel mini
endstops.enable(true);
if (!home_delta()) return;
if (!home_delta()) return false;
endstops.not_homing();
print_signed_float(PSTR( "H_FACTOR: "), h_fac);
print_signed_float(PSTR(" R_FACTOR: "), r_fac);