mirror of
https://github.com/esphome/esphome.git
synced 2025-10-18 09:43:47 +01:00
tweak
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
substitutions:
|
||||
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
|
||||
|
13
tests/test_build_components/common/qspi/esp32-s3-idf.yaml
Normal file
13
tests/test_build_components/common/qspi/esp32-s3-idf.yaml
Normal 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
|
@@ -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
|
@@ -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
|
@@ -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
|
Reference in New Issue
Block a user