diff options
| author | jacqueline <me@jacqueline.id.au> | 2024-02-07 15:46:41 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2024-02-07 15:47:23 +1100 |
| commit | 18345a1c2c357d194c9eda8bf2103db9965d3996 (patch) | |
| tree | 819d66c13702e18629103660ec9c0107ca7556e4 | |
| parent | 02b897d536d395f89b8abcfe64cb3b6a19fa5bec (diff) | |
| download | tangara-fw-18345a1c2c357d194c9eda8bf2103db9965d3996.tar.gz | |
Silence chatty touchwheel log
| -rw-r--r-- | src/drivers/touchwheel.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/drivers/touchwheel.cpp b/src/drivers/touchwheel.cpp index 3c6bdb97..a20f434b 100644 --- a/src/drivers/touchwheel.cpp +++ b/src/drivers/touchwheel.cpp @@ -108,13 +108,8 @@ void TouchWheel::Update() { uint8_t status = ReadRegister(Register::DETECTION_STATUS); if (status & 0b10000000) { // Still calibrating. - ESP_LOGW(kTag, "awaiting calibration"); return; } - if (status & 0b01000000) { - // Probably okay, but we should keep an eye on this for development. - ESP_LOGW(kTag, "touchwheel acquisition >16ms"); - } if (status & 0b10) { // Slider detect. uint8_t pos = ReadRegister(Register::SLIDER_POSITION); |
