Skip to content

Add an option for delta to home to the top #5264

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 21, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Marlin/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3438,7 +3438,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
Expand Down
3 changes: 3 additions & 0 deletions Marlin/example_configurations/delta/biv2.5/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,9 @@
// in ultralcd.cpp@lcd_delta_calibrate_menu()
//#define DELTA_CALIBRATION_MENU

// After homing move down to a height where XY movement is unconstrained
#define DELTA_HOME_TO_SAFE_ZONE

//#define DELTA_ENDSTOP_ADJ { 0, 0, 0 }

#endif
Expand Down
3 changes: 3 additions & 0 deletions Marlin/example_configurations/delta/generic/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,9 @@
// in ultralcd.cpp@lcd_delta_calibrate_menu()
//#define DELTA_CALIBRATION_MENU

// After homing move down to a height where XY movement is unconstrained
#define DELTA_HOME_TO_SAFE_ZONE

//#define DELTA_ENDSTOP_ADJ { 0, 0, 0 }

#endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,9 @@
// in ultralcd.cpp@lcd_delta_calibrate_menu()
//#define DELTA_CALIBRATION_MENU

// After homing move down to a height where XY movement is unconstrained
#define DELTA_HOME_TO_SAFE_ZONE

//#define DELTA_ENDSTOP_ADJ { 0, 0, 0 }

#endif
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@

/**
* Example configuration file for OpenBeam Kossel Pro
* tested on 2015-05-19 by @Wackerbarth
* using Arduino 1.6.5 (Mac)
*/

/**
Expand Down Expand Up @@ -441,6 +439,9 @@
// in ultralcd.cpp@lcd_delta_calibrate_menu()
//#define DELTA_CALIBRATION_MENU

// After homing move down to a height where XY movement is unconstrained
#define DELTA_HOME_TO_SAFE_ZONE

//#define DELTA_ENDSTOP_ADJ { 0, 0, 0 }

#endif
Expand Down
3 changes: 3 additions & 0 deletions Marlin/example_configurations/delta/kossel_xl/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,9 @@
// in ultralcd.cpp@lcd_delta_calibrate_menu()
//#define DELTA_CALIBRATION_MENU

// After homing move down to a height where XY movement is unconstrained
#define DELTA_HOME_TO_SAFE_ZONE

//#define DELTA_ENDSTOP_ADJ { 0, 0, 0 }

#endif
Expand Down