Merge pull request #5264 from thinkyhead/rc_delta_safe_zone

Add an option for delta to home to the top
This commit is contained in:
Scott Lahteine
2016-11-21 13:56:44 -06:00
committed by GitHub
6 changed files with 16 additions and 3 deletions

View File

@ -3435,7 +3435,7 @@ inline void gcode_G28() {
endstops.not_homing();
#if ENABLED(DELTA)
#if ENABLED(DELTA) && ENABLED(DELTA_HOME_TO_SAFE_ZONE)
// move to a height where we can use the full xy-area
do_blocking_move_to_z(delta_clip_start_height);
#endif