Skip to content

Commit fecd9f8

Browse files
authored
Correct values of Nano 33 BLE power save pin macros
The values of the PIN_ENABLE_I2C_PULLUP and PIN_ENABLE_SENSORS_3V3 macros were swapped with each other.
1 parent f368f7d commit fecd9f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

variants/ARDUINO_NANO33BLE/pins_arduino.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ static const uint8_t SCK = PIN_SPI_SCK;
118118
#define PIN_WIRE_SDA1 (30u)
119119
#define PIN_WIRE_SCL1 (31u)
120120

121-
#define PIN_ENABLE_SENSORS_3V3 (32u)
122-
#define PIN_ENABLE_I2C_PULLUP (33u)
121+
#define PIN_ENABLE_I2C_PULLUP (32u)
122+
#define PIN_ENABLE_SENSORS_3V3 (33u)
123123

124124
#define PIN_INT_APDS (26u)
125125

0 commit comments

Comments
 (0)