|
@@ -73,7 +73,7 @@
|
73
|
73
|
#include "../feature/tmc_util.h"
|
74
|
74
|
#endif
|
75
|
75
|
|
76
|
|
-#if QUIET_PROBING
|
|
76
|
+#if HAS_QUIET_PROBING
|
77
|
77
|
#include "stepper/indirection.h"
|
78
|
78
|
#endif
|
79
|
79
|
|
|
@@ -236,7 +236,7 @@ xyz_pos_t Probe::offset; // Initialized by settings.load()
|
236
|
236
|
|
237
|
237
|
#endif // Z_PROBE_ALLEN_KEY
|
238
|
238
|
|
239
|
|
-#if QUIET_PROBING
|
|
239
|
+#if HAS_QUIET_PROBING
|
240
|
240
|
|
241
|
241
|
void Probe::set_probing_paused(const bool p) {
|
242
|
242
|
TERN_(PROBING_HEATERS_OFF, thermalManager.pause(p));
|
|
@@ -254,7 +254,7 @@ xyz_pos_t Probe::offset; // Initialized by settings.load()
|
254
|
254
|
);
|
255
|
255
|
}
|
256
|
256
|
|
257
|
|
-#endif // QUIET_PROBING
|
|
257
|
+#endif // HAS_QUIET_PROBING
|
258
|
258
|
|
259
|
259
|
/**
|
260
|
260
|
* Raise Z to a minimum height to make room for a probe to move
|
|
@@ -437,7 +437,7 @@ bool Probe::probe_down_to_z(const float z, const feedRate_t fr_mm_s) {
|
437
|
437
|
endstops.enable(true);
|
438
|
438
|
#endif
|
439
|
439
|
|
440
|
|
- TERN_(QUIET_PROBING, set_probing_paused(true));
|
|
440
|
+ TERN_(HAS_QUIET_PROBING, set_probing_paused(true));
|
441
|
441
|
|
442
|
442
|
// Move down until the probe is triggered
|
443
|
443
|
do_blocking_move_to_z(z, fr_mm_s);
|
|
@@ -451,7 +451,7 @@ bool Probe::probe_down_to_z(const float z, const feedRate_t fr_mm_s) {
|
451
|
451
|
#endif
|
452
|
452
|
;
|
453
|
453
|
|
454
|
|
- TERN_(QUIET_PROBING, set_probing_paused(false));
|
|
454
|
+ TERN_(HAS_QUIET_PROBING, set_probing_paused(false));
|
455
|
455
|
|
456
|
456
|
// Re-enable stealthChop if used. Disable diag1 pin on driver.
|
457
|
457
|
#if ENABLED(SENSORLESS_PROBING)
|