mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-09-09 00:07:47 -06:00
Fix updated Allen Key pause probe logic (#13723)
This commit is contained in:
parent
7ca1fea22b
commit
e8dc87a2b7
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ FORCE_INLINE void probe_specific_action(const bool deploy) {
|
||||||
#if ENABLED(PAUSE_BEFORE_DEPLOY_STOW)
|
#if ENABLED(PAUSE_BEFORE_DEPLOY_STOW)
|
||||||
do {
|
do {
|
||||||
#if ENABLED(PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED)
|
#if ENABLED(PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED)
|
||||||
if (READ(Z_MIN_PROBE_PIN) == (deploy == bool(Z_MIN_PROBE_ENDSTOP_INVERTING))) break;
|
if (deploy == (READ(Z_MIN_PROBE_PIN) == Z_MIN_PROBE_ENDSTOP_INVERTING)) break;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
BUZZ(100, 659);
|
BUZZ(100, 659);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue