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();