Browse Source

Followup for Endstop Noise Threshold

Followup to #11912
pull/1/head
Scott Lahteine 6 years ago
parent
commit
d6b9327c11
  1. 4
      Marlin/src/module/endstops.cpp

4
Marlin/src/module/endstops.cpp

@ -248,7 +248,7 @@ void Endstops::poll() {
#if DISABLED(ENDSTOP_INTERRUPTS_FEATURE)
update();
#elif ENABLED(ENDSTOP_NOISE_FILTER)
#elif ENDSTOP_NOISE_THRESHOLD
if (endstop_poll_count) update();
#endif
}
@ -278,7 +278,7 @@ void Endstops::not_homing() {
// Still 'enabled'? Then endstops are always on and kept in sync.
// Otherwise reset 'live's variables to let axes move in both directions.
if (!enabled) {
#if ENABLED(ENDSTOP_NOISE_FILTER)
#if ENDSTOP_NOISE_THRESHOLD
endstop_poll_count = validated_live_state = 0; // Stop filtering
#endif
live_state = 0;

Loading…
Cancel
Save