fix: route logger through UART0 instead of USB_SERIAL_JTAG
Waveshare's board wires log output through the same UART USB-C port used for flashing. ESPHome's default hardware_uart for ESP32-S3 is USB_SERIAL_JTAG, which is a separate physical port on this board, so log output was going nowhere the flashing tool could see it.
This commit is contained in:
parent
3d2172317c
commit
12b56e3153
1 changed files with 3 additions and 0 deletions
|
|
@ -39,6 +39,9 @@ ota:
|
|||
|
||||
logger:
|
||||
level: DEBUG
|
||||
hardware_uart: UART0 # this board's "UART" USB-C port (used for flashing) also does log printing
|
||||
# per Waveshare's docs — ESPHome defaults S3 boards to USB_SERIAL_JTAG,
|
||||
# a different physical port, which is why logs went silent
|
||||
|
||||
packages:
|
||||
display: !include components/display.yaml
|
||||
|
|
|
|||
Loading…
Reference in a new issue