Merge pull request #3782 from thinkyhead/rc_home_z_before_g29

Require homing of Z before G29
master
Scott Lahteine 8 years ago
commit d66e53c42b

@ -2063,10 +2063,17 @@ static void setup_for_endstop_move() {
#endif // AUTO_BED_LEVELING_FEATURE #endif // AUTO_BED_LEVELING_FEATURE
#if ENABLED(Z_PROBE_SLED) || ENABLED(Z_SAFE_HOMING) || ENABLED(AUTO_BED_LEVELING_FEATURE) #if ENABLED(Z_PROBE_SLED) || ENABLED(Z_SAFE_HOMING) || ENABLED(AUTO_BED_LEVELING_FEATURE)
static void axis_unhomed_error() { static void axis_unhomed_error(bool xyz=false) {
LCD_MESSAGEPGM(MSG_YX_UNHOMED); if (xyz) {
SERIAL_ECHO_START; LCD_MESSAGEPGM(MSG_XYZ_UNHOMED);
SERIAL_ECHOLNPGM(MSG_YX_UNHOMED); SERIAL_ECHO_START;
SERIAL_ECHOLNPGM(MSG_XYZ_UNHOMED);
}
else {
LCD_MESSAGEPGM(MSG_YX_UNHOMED);
SERIAL_ECHO_START;
SERIAL_ECHOLNPGM(MSG_YX_UNHOMED);
}
} }
#endif #endif
@ -2090,8 +2097,8 @@ static void setup_for_endstop_move() {
} }
#endif #endif
if (!axis_homed[X_AXIS] || !axis_homed[Y_AXIS]) { if (!axis_homed[X_AXIS] || !axis_homed[Y_AXIS] || !axis_homed[Z_AXIS]) {
axis_unhomed_error(); axis_unhomed_error(true);
return; return;
} }
@ -3176,8 +3183,8 @@ inline void gcode_G28() {
#endif #endif
// Don't allow auto-leveling without homing first // Don't allow auto-leveling without homing first
if (!axis_homed[X_AXIS] || !axis_homed[Y_AXIS]) { if (!axis_homed[X_AXIS] || !axis_homed[Y_AXIS] || !axis_homed[Z_AXIS]) {
axis_unhomed_error(); axis_unhomed_error(true);
return; return;
} }
@ -4035,7 +4042,7 @@ inline void gcode_M42() {
inline void gcode_M48() { inline void gcode_M48() {
if (!axis_homed[X_AXIS] || !axis_homed[Y_AXIS] || !axis_homed[Z_AXIS]) { if (!axis_homed[X_AXIS] || !axis_homed[Y_AXIS] || !axis_homed[Z_AXIS]) {
axis_unhomed_error(); axis_unhomed_error(true);
return; return;
} }

@ -448,6 +448,9 @@
#ifndef MSG_YX_UNHOMED #ifndef MSG_YX_UNHOMED
#define MSG_YX_UNHOMED "Home X/Y before Z" #define MSG_YX_UNHOMED "Home X/Y before Z"
#endif #endif
#ifndef MSG_XYZ_UNHOMED
#define MSG_XYZ_UNHOMED "Home XYZ first"
#endif
#ifndef MSG_ZPROBE_ZOFFSET #ifndef MSG_ZPROBE_ZOFFSET
#define MSG_ZPROBE_ZOFFSET "Z Offset" #define MSG_ZPROBE_ZOFFSET "Z Offset"
#endif #endif

Loading…
Cancel
Save