Unify run_z_probe
Unify run_z_probe Add double touch for DELTAs. Introduce Z_PROBE_SPEED_FAST and Z_PROBE_SPEED_SLOW defaulting to homing_feedrate_mm_m[Z_AXIS] and homing_feedrate_mm_m[Z_AXIS]/2
This commit is contained in:
		
							parent
							
								
									e6e4d4062d
								
							
						
					
					
						commit
						09a3cc33e6
					
				@ -499,6 +499,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -1584,7 +1584,7 @@ static void set_axis_is_at_home(AxisEnum axis) {
 | 
				
			|||||||
/**
 | 
					/**
 | 
				
			||||||
 * Some planner shorthand inline functions
 | 
					 * Some planner shorthand inline functions
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
inline float set_homing_bump_feedrate(AxisEnum axis) {
 | 
					inline float get_homing_bump_feedrate(AxisEnum axis) {
 | 
				
			||||||
  const int homing_bump_divisor[] = HOMING_BUMP_DIVISOR;
 | 
					  const int homing_bump_divisor[] = HOMING_BUMP_DIVISOR;
 | 
				
			||||||
  int hbd = homing_bump_divisor[axis];
 | 
					  int hbd = homing_bump_divisor[axis];
 | 
				
			||||||
  if (hbd < 1) {
 | 
					  if (hbd < 1) {
 | 
				
			||||||
@ -1592,8 +1592,7 @@ inline float set_homing_bump_feedrate(AxisEnum axis) {
 | 
				
			|||||||
    SERIAL_ECHO_START;
 | 
					    SERIAL_ECHO_START;
 | 
				
			||||||
    SERIAL_ECHOLNPGM("Warning: Homing Bump Divisor < 1");
 | 
					    SERIAL_ECHOLNPGM("Warning: Homing Bump Divisor < 1");
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  feedrate_mm_m = homing_feedrate_mm_m[axis] / hbd;
 | 
					  return homing_feedrate_mm_m[axis] / hbd;
 | 
				
			||||||
  return feedrate_mm_m;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// line_to_current_position
 | 
					// line_to_current_position
 | 
				
			||||||
@ -1613,7 +1612,7 @@ inline void line_to_axis_pos(AxisEnum axis, float where, float fr_mm_m = 0.0) {
 | 
				
			|||||||
  current_position[axis] = where;
 | 
					  current_position[axis] = where;
 | 
				
			||||||
  feedrate_mm_m = (fr_mm_m != 0.0) ? fr_mm_m : homing_feedrate_mm_m[axis];
 | 
					  feedrate_mm_m = (fr_mm_m != 0.0) ? fr_mm_m : homing_feedrate_mm_m[axis];
 | 
				
			||||||
  planner.buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], MMM_TO_MMS(feedrate_mm_m), active_extruder);
 | 
					  planner.buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], MMM_TO_MMS(feedrate_mm_m), active_extruder);
 | 
				
			||||||
  stepper.synchronize(); // The lost one
 | 
					  stepper.synchronize();
 | 
				
			||||||
  feedrate_mm_m = old_feedrate_mm_m;
 | 
					  feedrate_mm_m = old_feedrate_mm_m;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -2061,85 +2060,35 @@ static void clean_up_after_endstop_or_probe_move() {
 | 
				
			|||||||
  // at the height where the probe triggered.
 | 
					  // at the height where the probe triggered.
 | 
				
			||||||
  static float run_z_probe() {
 | 
					  static float run_z_probe() {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    float old_feedrate_mm_m = feedrate_mm_m;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    // Prevent stepper_inactive_time from running out and EXTRUDER_RUNOUT_PREVENT from extruding
 | 
					    // Prevent stepper_inactive_time from running out and EXTRUDER_RUNOUT_PREVENT from extruding
 | 
				
			||||||
    refresh_cmd_timeout();
 | 
					    refresh_cmd_timeout();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    #if ENABLED(DELTA)
 | 
					    #if ENABLED(AUTO_BED_LEVELING_FEATURE)
 | 
				
			||||||
 | 
					      planner.bed_level_matrix.set_to_identity();
 | 
				
			||||||
 | 
					    #endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      float start_z = current_position[Z_AXIS];
 | 
					    current_position[Z_AXIS] = -(Z_MAX_LENGTH + 10);
 | 
				
			||||||
      long start_steps = stepper.position(Z_AXIS);
 | 
					    do_blocking_move_to_z(current_position[Z_AXIS], Z_PROBE_SPEED_FAST);
 | 
				
			||||||
 | 
					    endstops.hit_on_purpose(); // clear endstop hit flags
 | 
				
			||||||
 | 
					    // Get the current stepper position after bumping an endstop
 | 
				
			||||||
 | 
					    current_position[Z_AXIS] = stepper.get_axis_position_mm(Z_AXIS);
 | 
				
			||||||
 | 
					    SYNC_PLAN_POSITION_KINEMATIC(); // tell the planner where we are      feedrate_mm_m = homing_feedrate_mm_m[Z_AXIS];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      #if ENABLED(DEBUG_LEVELING_FEATURE)
 | 
					    // move up the retract distance
 | 
				
			||||||
        if (DEBUGGING(LEVELING)) DEBUG_POS("run_z_probe (DELTA) 1", current_position);
 | 
					    current_position[Z_AXIS] += home_bump_mm(Z_AXIS);
 | 
				
			||||||
      #endif
 | 
					    do_blocking_move_to_z(current_position[Z_AXIS], Z_PROBE_SPEED_FAST);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      // move down slowly until you find the bed
 | 
					    // move back down slowly to find bed
 | 
				
			||||||
      feedrate_mm_m = homing_feedrate_mm_m[Z_AXIS] / 4;
 | 
					    current_position[Z_AXIS] -= home_bump_mm(Z_AXIS) * 2;
 | 
				
			||||||
      destination[Z_AXIS] = -10;
 | 
					    do_blocking_move_to_z(current_position[Z_AXIS], Z_PROBE_SPEED_SLOW);
 | 
				
			||||||
      prepare_move_to_destination_raw(); // this will also set_current_to_destination
 | 
					    endstops.hit_on_purpose(); // clear endstop hit flags
 | 
				
			||||||
      stepper.synchronize();
 | 
					    // Get the current stepper position after bumping an endstop
 | 
				
			||||||
      endstops.hit_on_purpose(); // clear endstop hit flags
 | 
					    current_position[Z_AXIS] = stepper.get_axis_position_mm(Z_AXIS);
 | 
				
			||||||
 | 
					    SYNC_PLAN_POSITION_KINEMATIC(); // tell the planner where we are
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      /**
 | 
					    #if ENABLED(DEBUG_LEVELING_FEATURE)
 | 
				
			||||||
       * We have to let the planner know where we are right now as it
 | 
					      if (DEBUGGING(LEVELING)) DEBUG_POS("run_z_probe", current_position);
 | 
				
			||||||
       * is not where we said to go.
 | 
					    #endif
 | 
				
			||||||
       */
 | 
					 | 
				
			||||||
      long stop_steps = stepper.position(Z_AXIS);
 | 
					 | 
				
			||||||
      float mm = start_z - float(start_steps - stop_steps) / planner.axis_steps_per_mm[Z_AXIS];
 | 
					 | 
				
			||||||
      current_position[Z_AXIS] = mm;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      #if ENABLED(DEBUG_LEVELING_FEATURE)
 | 
					 | 
				
			||||||
        if (DEBUGGING(LEVELING)) DEBUG_POS("run_z_probe (DELTA) 2", current_position);
 | 
					 | 
				
			||||||
      #endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    #else // !DELTA
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      #if ENABLED(AUTO_BED_LEVELING_FEATURE)
 | 
					 | 
				
			||||||
        planner.bed_level_matrix.set_to_identity();
 | 
					 | 
				
			||||||
      #endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      feedrate_mm_m = homing_feedrate_mm_m[Z_AXIS];
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      // Move down until the Z probe (or endstop?) is triggered
 | 
					 | 
				
			||||||
      float zPosition = -(Z_MAX_LENGTH + 10);
 | 
					 | 
				
			||||||
      line_to_z(zPosition);
 | 
					 | 
				
			||||||
      stepper.synchronize();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      // Tell the planner where we ended up - Get this from the stepper handler
 | 
					 | 
				
			||||||
      zPosition = stepper.get_axis_position_mm(Z_AXIS);
 | 
					 | 
				
			||||||
      planner.set_position_mm(
 | 
					 | 
				
			||||||
        current_position[X_AXIS], current_position[Y_AXIS], zPosition,
 | 
					 | 
				
			||||||
        current_position[E_AXIS]
 | 
					 | 
				
			||||||
      );
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      // move up the retract distance
 | 
					 | 
				
			||||||
      zPosition += home_bump_mm(Z_AXIS);
 | 
					 | 
				
			||||||
      line_to_z(zPosition);
 | 
					 | 
				
			||||||
      stepper.synchronize();
 | 
					 | 
				
			||||||
      endstops.hit_on_purpose(); // clear endstop hit flags
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      // move back down slowly to find bed
 | 
					 | 
				
			||||||
      set_homing_bump_feedrate(Z_AXIS);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      zPosition -= home_bump_mm(Z_AXIS) * 2;
 | 
					 | 
				
			||||||
      line_to_z(zPosition);
 | 
					 | 
				
			||||||
      stepper.synchronize();
 | 
					 | 
				
			||||||
      endstops.hit_on_purpose(); // clear endstop hit flags
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      // Get the current stepper position after bumping an endstop
 | 
					 | 
				
			||||||
      current_position[Z_AXIS] = stepper.get_axis_position_mm(Z_AXIS);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      #if ENABLED(DEBUG_LEVELING_FEATURE)
 | 
					 | 
				
			||||||
        if (DEBUGGING(LEVELING)) DEBUG_POS("run_z_probe", current_position);
 | 
					 | 
				
			||||||
      #endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    #endif // !DELTA
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    SYNC_PLAN_POSITION_KINEMATIC();
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    feedrate_mm_m = old_feedrate_mm_m;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return current_position[Z_AXIS];
 | 
					    return current_position[Z_AXIS];
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
@ -2424,7 +2373,7 @@ static void homeaxis(AxisEnum axis) {
 | 
				
			|||||||
  line_to_axis_pos(axis, -home_bump_mm(axis) * axis_home_dir);
 | 
					  line_to_axis_pos(axis, -home_bump_mm(axis) * axis_home_dir);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Move slowly towards the endstop until triggered
 | 
					  // Move slowly towards the endstop until triggered
 | 
				
			||||||
  line_to_axis_pos(axis, 2 * home_bump_mm(axis) * axis_home_dir, set_homing_bump_feedrate(axis));
 | 
					  line_to_axis_pos(axis, 2 * home_bump_mm(axis) * axis_home_dir, get_homing_bump_feedrate(axis));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  #if ENABLED(DEBUG_LEVELING_FEATURE)
 | 
					  #if ENABLED(DEBUG_LEVELING_FEATURE)
 | 
				
			||||||
    if (DEBUGGING(LEVELING)) DEBUG_POS("> TRIGGER ENDSTOP", current_position);
 | 
					    if (DEBUGGING(LEVELING)) DEBUG_POS("> TRIGGER ENDSTOP", current_position);
 | 
				
			||||||
 | 
				
			|||||||
@ -499,6 +499,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -481,6 +481,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -479,6 +479,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -491,6 +491,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -493,6 +493,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -516,6 +516,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -499,6 +499,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -499,6 +499,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -499,6 +499,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -496,6 +496,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -507,6 +507,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -520,6 +520,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -491,6 +491,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -499,6 +499,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -541,6 +541,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 4000
 | 
					#define XY_PROBE_SPEED 4000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe
 | 
					// Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe
 | 
				
			||||||
// Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN.
 | 
					// Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN.
 | 
				
			||||||
 | 
				
			|||||||
@ -541,6 +541,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 4000
 | 
					#define XY_PROBE_SPEED 4000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe
 | 
					// Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe
 | 
				
			||||||
// Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN.
 | 
					// Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN.
 | 
				
			||||||
 | 
				
			|||||||
@ -541,6 +541,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 4000
 | 
					#define XY_PROBE_SPEED 4000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe
 | 
					// Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe
 | 
				
			||||||
// Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN.
 | 
					// Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN.
 | 
				
			||||||
 | 
				
			|||||||
@ -532,6 +532,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe
 | 
					// Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe
 | 
				
			||||||
// Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN.
 | 
					// Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN.
 | 
				
			||||||
 | 
				
			|||||||
@ -539,6 +539,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe
 | 
					// Allen key retractable z-probe as seen on many Kossel delta printers - http://reprap.org/wiki/Kossel#Automatic_bed_leveling_probe
 | 
				
			||||||
// Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN.
 | 
					// Deploys by touching z-axis belt. Retracts by pushing the probe down. Uses Z_MIN_PIN.
 | 
				
			||||||
 | 
				
			|||||||
@ -502,6 +502,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
@ -489,6 +489,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
// X and Y axis travel speed (mm/m) between probes
 | 
					// X and Y axis travel speed (mm/m) between probes
 | 
				
			||||||
#define XY_PROBE_SPEED 8000
 | 
					#define XY_PROBE_SPEED 8000
 | 
				
			||||||
 | 
					// Speed for the first approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_FAST (homing_feedrate_mm_m[Z_AXIS])
 | 
				
			||||||
 | 
					// Speed for the second approach when probing
 | 
				
			||||||
 | 
					#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Allen Key Probe is defined in the Delta example configurations.
 | 
					// Allen Key Probe is defined in the Delta example configurations.
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user