build: fix RAK, T114, T1000 builds

This commit is contained in:
taco
2025-04-09 18:22:01 +10:00
parent 9b3e7e5a21
commit be64fa7ca0
3 changed files with 3 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ void RAK4631Board::begin() {
#endif
#if defined(PIN_BOARD_SDA) && defined(PIN_BOARD_SCL)
Wire.setPins(PIN_BOARD_SDA, PIN_BOARD_SCL)
Wire.setPins(PIN_BOARD_SDA, PIN_BOARD_SCL);
#endif
Wire.begin();

View File

@@ -18,7 +18,7 @@ void T1000eBoard::begin() {
#endif
#if defined(PIN_BOARD_SDA) && defined(PIN_BOARD_SCL)
Wire.setPins(PIN_BOARD_SDA, PIN_BOARD_SCL)
Wire.setPins(PIN_BOARD_SDA, PIN_BOARD_SCL);
#endif
Wire.begin();

View File

@@ -27,7 +27,7 @@ void T114Board::begin() {
pinMode(PIN_VBAT_READ, INPUT);
#if defined(PIN_BOARD_SDA) && defined(PIN_BOARD_SCL)
Wire.setPins(PIN_BOARD_SDA, PIN_BOARD_SCL)
Wire.setPins(PIN_BOARD_SDA, PIN_BOARD_SCL);
#endif
Wire.begin();