mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 11:56:25 +01:00
fix compilation error for libretiny (#6064)
This commit is contained in:
parent
fdd54d74a3
commit
4202fe65b5
@ -309,7 +309,7 @@ async def component_to_code(config):
|
||||
lt_options["LT_UART_SILENT_ENABLED"] = 0
|
||||
lt_options["LT_UART_SILENT_ALL"] = 0
|
||||
# set default UART port
|
||||
if uart_port := framework.get(CONF_UART_PORT, None) is not None:
|
||||
if (uart_port := framework.get(CONF_UART_PORT, None)) is not None:
|
||||
lt_options["LT_UART_DEFAULT_PORT"] = uart_port
|
||||
# add custom options
|
||||
lt_options.update(framework[CONF_OPTIONS])
|
||||
|
Loading…
Reference in New Issue
Block a user