|
@@ -487,7 +487,7 @@ bool set_probe_deployed(const bool deploy) {
|
487
|
487
|
const char msg_wait_for_bed_heating[25] PROGMEM = "Wait for bed heating...\n";
|
488
|
488
|
#endif
|
489
|
489
|
|
490
|
|
-static bool do_probe_move(const float z, const float fr_mm_m) {
|
|
490
|
+static bool do_probe_move(const float z, const float fr_mm_s) {
|
491
|
491
|
#if ENABLED(DEBUG_LEVELING_FEATURE)
|
492
|
492
|
if (DEBUGGING(LEVELING)) DEBUG_POS(">>> do_probe_move", current_position);
|
493
|
493
|
#endif
|
|
@@ -512,7 +512,7 @@ static bool do_probe_move(const float z, const float fr_mm_m) {
|
512
|
512
|
#endif
|
513
|
513
|
|
514
|
514
|
// Move down until probe triggered
|
515
|
|
- do_blocking_move_to_z(z, MMM_TO_MMS(fr_mm_m));
|
|
515
|
+ do_blocking_move_to_z(z, fr_mm_s);
|
516
|
516
|
|
517
|
517
|
// Check to see if the probe was triggered
|
518
|
518
|
const bool probe_triggered = TEST(Endstops::endstop_hit_bits,
|