From 02580dab2eec197c75fc4497fdc2f7c44abf5c5d Mon Sep 17 00:00:00 2001 From: jonasius Date: Fri, 6 Dec 2024 23:51:36 +0100 Subject: [PATCH] Add probing for unused devices for testing/timing --- source/Core/Drivers/FS2711.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/Core/Drivers/FS2711.cpp b/source/Core/Drivers/FS2711.cpp index 05731c54..ebad9904 100644 --- a/source/Core/Drivers/FS2711.cpp +++ b/source/Core/Drivers/FS2711.cpp @@ -52,6 +52,8 @@ bool i2c_probe(uint8_t addr) { } uint8_t FS2711::detect_i2c_bus_num() { + I2CBB2::probe(88); + I2CBB2::probe(89); if (I2CBB2::probe(FS2711_ADDR)) { I2C_PORT = 2; } else {