From c50be9ecddeccded56335fa096fd739b73d7fbe4 Mon Sep 17 00:00:00 2001 From: rusefillc Date: Thu, 16 Nov 2023 22:36:38 -0500 Subject: [PATCH] undoing noise only:proteus_f7 --- firmware/hw_layer/debounce.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/hw_layer/debounce.cpp b/firmware/hw_layer/debounce.cpp index c9993a54f0..2c526a0ebc 100644 --- a/firmware/hw_layer/debounce.cpp +++ b/firmware/hw_layer/debounce.cpp @@ -102,11 +102,11 @@ bool ButtonDebounce::readPinState2(bool valueWithinThreshold) { return valueWithinThreshold; } bool value = getPhysicalState(); - efiPrintf("%s value %d", m_name, value); +// efiPrintf("[debounce] %s value %d", m_name, value); // Invert if (active_mode == PI_PULLUP) { value = !value; - efiPrintf("%s inverted %d", m_name, value); +// efiPrintf("[debounce] %s inverted %d", m_name, value); } if (value) { timeLast.reset();