1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-18 17:53:47 +01:00
This commit is contained in:
J. Nick Koston
2025-10-08 12:21:30 -10:00
parent ced308d57d
commit c2c5d85132
5 changed files with 50 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
substitutions: substitutions:
packages: packages:
uart: !include ../../test_build_components/common/uart_4800/esp32-c3-idf.yaml uart: !include ../../test_build_components/common/uart_4800_even/esp32-c3-idf.yaml
<<: !include common.yaml <<: !include common.yaml

View File

@@ -0,0 +1,13 @@
# Common QSPI configuration for ESP32-S3 IDF tests
# For components that need QuadSPI (qspi_dbi displays)
spi:
- id: quad_spi
type: quad
interface: spi3
clk_pin: 47
data_pins:
- 40
- 41
- 42
- 43

View File

@@ -0,0 +1,12 @@
# Common UART configuration for ESP32-C3 IDF tests - 1200 baud, EVEN parity
substitutions:
tx_pin: GPIO20
rx_pin: GPIO21
uart:
- id: uart_bus
tx_pin: ${tx_pin}
rx_pin: ${rx_pin}
baud_rate: 1200
parity: EVEN

View File

@@ -0,0 +1,12 @@
# Common UART configuration for ESP32-C3 IDF tests - 4800 baud, EVEN parity
substitutions:
tx_pin: GPIO20
rx_pin: GPIO21
uart:
- id: uart_bus
tx_pin: ${tx_pin}
rx_pin: ${rx_pin}
baud_rate: 4800
parity: EVEN

View File

@@ -0,0 +1,12 @@
# Common UART configuration for ESP32-C3 IDF tests - 9600 baud, EVEN parity
substitutions:
tx_pin: GPIO20
rx_pin: GPIO21
uart:
- id: uart_bus
tx_pin: ${tx_pin}
rx_pin: ${rx_pin}
baud_rate: 9600
parity: EVEN