Skip to content

Commit c280225

Browse files
ladyadaladyada
and
ladyada
authored
fix final rev pins (espressif#6353)
fix uarts Co-authored-by: ladyada <support@adafruit.com>
1 parent 4f7e88a commit c280225

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

Diff for: boards.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5500,7 +5500,7 @@ adafruit_qtpy_esp32c3.menu.DebugLevel.verbose=Verbose
55005500
adafruit_qtpy_esp32c3.menu.DebugLevel.verbose.build.code_debug=5
55015501

55025502

5503-
adafruit_qtpy_esp32_pico.name=Adafruit QT Py ESP32 Pico
5503+
adafruit_qtpy_esp32_pico.name=Adafruit QT Py ESP32
55045504

55055505
adafruit_qtpy_esp32_pico.upload.tool=esptool_py
55065506
adafruit_qtpy_esp32_pico.upload.maximum_size=1310720

Diff for: variants/adafruit_feather_esp32_v2/pins_arduino.h

+5-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ static const uint8_t LED_BUILTIN = 13;
1515
#define BUILTIN_LED LED_BUILTIN // backward compatibility
1616
#define LED_BUILTIN LED_BUILTIN
1717

18-
static const uint8_t TX = 7;
19-
static const uint8_t RX = 8;
20-
static const uint8_t TX1 = 7;
21-
static const uint8_t RX1 = 8;
18+
static const uint8_t TX = 8;
19+
static const uint8_t RX = 7;
20+
static const uint8_t TX1 = 8;
21+
static const uint8_t RX1 = 7;
2222

2323
static const uint8_t SDA = 22;
2424
static const uint8_t SCL = 20;
@@ -52,6 +52,7 @@ static const uint8_t BUTTON = 38;
5252

5353
// Neopixel
5454
static const uint8_t NEOPIXEL_PIN = 0;
55+
static const uint8_t PIN_NEOPIXEL = 0;
5556

5657
// Neopixel & I2C power
5758
static const uint8_t NEOPIXEL_I2C_POWER = 2;

Diff for: variants/adafruit_qtpy_esp32/pins_arduino.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ static const uint8_t RX = 7;
2020
#define TX1 32
2121
#define RX1 7
2222

23-
static const uint8_t SDA = 25;
23+
static const uint8_t SDA = 4;
2424
static const uint8_t SCL = 33;
2525

2626
static const uint8_t SDA1 = 22;
@@ -31,11 +31,11 @@ static const uint8_t MOSI = 13;
3131
static const uint8_t MISO = 12;
3232
static const uint8_t SCK = 14;
3333

34-
static const uint8_t A0 = 15;
35-
static const uint8_t A1 = 4;
34+
static const uint8_t A0 = 26;
35+
static const uint8_t A1 = 25;
3636
static const uint8_t A2 = 27;
37-
static const uint8_t A3 = 26;
38-
static const uint8_t A4 = 25;
37+
static const uint8_t A3 = 15;
38+
static const uint8_t A4 = 4;
3939
static const uint8_t A5 = 33;
4040
static const uint8_t A6 = 32;
4141
static const uint8_t A7 = 7;

0 commit comments

Comments
 (0)