|
@@ -865,9 +865,11 @@ float Probe::probe_at_point(const_float_t rx, const_float_t ry, const ProbePtRai
|
865
|
865
|
#if HAS_CURRENT_HOME(Z)
|
866
|
866
|
static int16_t saved_current_Z;
|
867
|
867
|
#endif
|
868
|
|
- auto debug_current_on = [](PGM_P const s, const int16_t a, const int16_t b) {
|
869
|
|
- if (DEBUGGING(LEVELING)) { DEBUG_ECHOPGM_P(s); DEBUG_ECHOLNPAIR(" current: ", a, " -> ", b); }
|
870
|
|
- };
|
|
868
|
+ #if ((ENABLED(DELTA) && (HAS_CURRENT_HOME(X) || HAS_CURRENT_HOME(Y))) || HAS_CURRENT_HOME(Z))
|
|
869
|
+ auto debug_current_on = [](PGM_P const s, const int16_t a, const int16_t b) {
|
|
870
|
+ if (DEBUGGING(LEVELING)) { DEBUG_ECHOPGM_P(s); DEBUG_ECHOLNPAIR(" current: ", a, " -> ", b); }
|
|
871
|
+ };
|
|
872
|
+ #endif
|
871
|
873
|
if (onoff) {
|
872
|
874
|
#if ENABLED(DELTA)
|
873
|
875
|
#if HAS_CURRENT_HOME(X)
|