Browse Source

Merge pull request #5454 from thinkyhead/rc_fix_delta_g29

Fix G29 starting height on DELTA
pull/1/head
Scott Lahteine 8 years ago
committed by GitHub
parent
commit
2c97c11731
  1. 5
      Marlin/Marlin_main.cpp
  2. 7
      Marlin/nozzle.h

5
Marlin/Marlin_main.cpp

@ -2177,6 +2177,11 @@ static void clean_up_after_endstop_or_probe_move() {
float old_feedrate_mm_s = feedrate_mm_s;
#if ENABLED(DELTA)
if (current_position[Z_AXIS] > delta_clip_start_height)
do_blocking_move_to_z(delta_clip_start_height);
#endif
// Ensure a minimum height before moving the probe
do_probe_raise(Z_CLEARANCE_BETWEEN_PROBES);

7
Marlin/nozzle.h

@ -70,8 +70,7 @@ class Nozzle {
#if ENABLED(NOZZLE_CLEAN_GOBACK)
// Move the nozzle to the initial point
do_blocking_move_to_z(initial.z);
do_blocking_move_to_xy(initial.x, initial.y);
do_blocking_move_to(initial.x, initial.y, initial.z);
#endif // NOZZLE_CLEAN_GOBACK
#endif // NOZZLE_CLEAN_FEATURE
@ -149,6 +148,10 @@ class Nozzle {
__attribute__((unused)) uint8_t const &objects = 0
) __attribute__((optimize ("Os"))) {
#if ENABLED(NOZZLE_CLEAN_FEATURE)
#if ENABLED(DELTA)
if (current_position[Z_AXIS] > delta_clip_start_height)
do_blocking_move_to_z(delta_clip_start_height);
#endif
switch (pattern) {
case 1:
Nozzle::zigzag(

Loading…
Cancel
Save