Don't allow filament change without homing first (#7054)

This commit is contained in:
Jim Brown 2017-06-13 18:11:37 -04:00 committed by Roxy-3D
parent 824f71d503
commit 26d20ebcfc

View file

@ -9276,6 +9276,11 @@ inline void gcode_M503() {
*/
inline void gcode_M600() {
// Don't allow filament change without homing first
if (axis_unhomed_error()) {
home_all_axes();
}
// Initial retract before move to filament change position
const float retract = parser.seen('E') ? parser.value_axis_units(E_AXIS) : 0
#if defined(PAUSE_PARK_RETRACT_LENGTH) && PAUSE_PARK_RETRACT_LENGTH > 0