From fecd9f8944372f9e2da06c55c556cd6a1db10119 Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 7 Jul 2020 10:49:29 -0700 Subject: [PATCH] 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. --- variants/ARDUINO_NANO33BLE/pins_arduino.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variants/ARDUINO_NANO33BLE/pins_arduino.h b/variants/ARDUINO_NANO33BLE/pins_arduino.h index ae78d94ee..8d2fd7283 100644 --- a/variants/ARDUINO_NANO33BLE/pins_arduino.h +++ b/variants/ARDUINO_NANO33BLE/pins_arduino.h @@ -118,8 +118,8 @@ static const uint8_t SCK = PIN_SPI_SCK; #define PIN_WIRE_SDA1 (30u) #define PIN_WIRE_SCL1 (31u) -#define PIN_ENABLE_SENSORS_3V3 (32u) -#define PIN_ENABLE_I2C_PULLUP (33u) +#define PIN_ENABLE_I2C_PULLUP (32u) +#define PIN_ENABLE_SENSORS_3V3 (33u) #define PIN_INT_APDS (26u)