:orphan: .. title:: LOG_BACKEND_UART .. option:: CONFIG_LOG_BACKEND_UART *Enable UART backend* Type: ``bool`` Help ==== When enabled backend is using UART to output logs. Direct dependencies =================== \ :option:`UART_CONSOLE ` && !\ :option:`LOG_FRONTEND ` && !\ :option:`LOG_MINIMAL ` && \ :option:`LOG ` *(Includes any dependencies from ifs and menus.)* Default ======= - y if !\ :option:`SHELL_BACKEND_SERIAL ` Kconfig definition ================== .. highlight:: kconfig At ``subsys/logging/Kconfig.backends:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:31`` → ``subsys/logging/Kconfig:25`` Menu path: (Top) → Sub Systems and OS Services → Logging → Backends .. parsed-literal:: config LOG_BACKEND_UART bool "Enable UART backend" default y if !\ :option:`SHELL_BACKEND_SERIAL ` depends on \ :option:`UART_CONSOLE ` && !\ :option:`LOG_FRONTEND ` && !\ :option:`LOG_MINIMAL ` && \ :option:`LOG ` help When enabled backend is using UART to output logs. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*