Registers GPIO3 and GPIO4 for secondary I2C bus

Resolves meshtastic/firmware#8417

Given pins 41 and 42 are used for GPS on this version it would seem using those pins, though drop in compatible with the V3 board, would render the GNSS socket unusable unless one used the inconvenient OLED pins on the forward edge of the board.
This commit is contained in:
Jacob Morris 2025-10-24 21:29:53 -06:00
parent 13c4c2037d
commit 5d13314853
No known key found for this signature in database
GPG Key ID: A0AE477FDAA4D709

View File

@ -6,6 +6,10 @@
#define I2C_SDA 17 // I2C pins for this board #define I2C_SDA 17 // I2C pins for this board
#define I2C_SCL 18 #define I2C_SCL 18
// Enable secondary bus for external periherals
#define I2C_SDA1 SDA
#define I2C_SCL1 SCL
#define VEXT_ENABLE 36 // active low, powers the oled display and the lora antenna boost #define VEXT_ENABLE 36 // active low, powers the oled display and the lora antenna boost
#define BUTTON_PIN 0 #define BUTTON_PIN 0