fix compilation error for libretiny (#6064)

This commit is contained in:
tomaszduda23 2024-01-09 00:05:52 +01:00 committed by Jesse Hills
parent 48a4e6bae9
commit da56d333dc
No known key found for this signature in database
GPG key ID: BEAAE804EFD8E83A

View file

@ -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])