Skip to content

Commit 4d67ab6

Browse files
authored
Merge pull request #10537 from dhalbert/reverse-tft-default-uart
correct board.UART() pins on Feather ESP32-S2/S3
2 parents 234ebf4 + 173a946 commit 4d67ab6

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

ports/espressif/boards/adafruit_feather_esp32s2_reverse_tft/mpconfigboard.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#define DEFAULT_SPI_BUS_MOSI (&pin_GPIO35)
2424
#define DEFAULT_SPI_BUS_MISO (&pin_GPIO37)
2525

26-
#define DEFAULT_UART_BUS_RX (&pin_GPIO34)
27-
#define DEFAULT_UART_BUS_TX (&pin_GPIO35)
26+
#define DEFAULT_UART_BUS_RX (&pin_GPIO38)
27+
#define DEFAULT_UART_BUS_TX (&pin_GPIO39)
2828

2929
#define DOUBLE_TAP_PIN (&pin_GPIO34)

ports/espressif/boards/adafruit_feather_esp32s2_reverse_tft/mpconfigboard.mk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ CIRCUITPY_ESP_FLASH_SIZE = 4MB
1313
CIRCUITPY_ESP_PSRAM_SIZE = 2MB
1414
CIRCUITPY_ESP_PSRAM_MODE = qio
1515
CIRCUITPY_ESP_PSRAM_FREQ = 80m
16+
17+
# Already have a display.
18+
CIRCUITPY_PARALLELDISPLAYBUS = 0
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#
2+
# Espressif IoT Development Framework Configuration
3+
#
4+
#
5+
# Component config
6+
#
7+
#
8+
# LWIP
9+
#
10+
# end of LWIP
11+
12+
# end of Component config
13+
14+
# end of Espressif IoT Development Framework Configuration

ports/espressif/boards/adafruit_feather_esp32s3_reverse_tft/mpconfigboard.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#define DEFAULT_SPI_BUS_MOSI (&pin_GPIO35)
2424
#define DEFAULT_SPI_BUS_MISO (&pin_GPIO37)
2525

26-
#define DEFAULT_UART_BUS_RX (&pin_GPIO34)
27-
#define DEFAULT_UART_BUS_TX (&pin_GPIO35)
26+
#define DEFAULT_UART_BUS_RX (&pin_GPIO38)
27+
#define DEFAULT_UART_BUS_TX (&pin_GPIO39)
2828

2929
#define DOUBLE_TAP_PIN (&pin_GPIO34)

0 commit comments

Comments
 (0)