:orphan: .. title:: CONFIG_UART_CONSOLE_MCUMGR .. kconfig:: CONFIG_UART_CONSOLE_MCUMGR CONFIG_UART_CONSOLE_MCUMGR ########################## *Enable UART console mcumgr passthrough* Type: ``bool`` Help ==== .. code-block:: none Enables the UART console to receive mcumgr frames for image upgrade and device management. When enabled, the UART console does not process mcumgr frames, but it hands them up to a higher level module (e.g., the shell). If unset, incoming mcumgr frames are dropped. Direct dependencies =================== \ :kconfig:`UART_CONSOLE ` && \ :kconfig:`CONSOLE ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Kconfig definition ================== At ``/console/Kconfig:62`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers → Use UART for console .. code-block:: kconfig config UART_CONSOLE_MCUMGR bool "Enable UART console mcumgr passthrough" depends on UART_CONSOLE && CONSOLE help Enables the UART console to receive mcumgr frames for image upgrade and device management. When enabled, the UART console does not process mcumgr frames, but it hands them up to a higher level module (e.g., the shell). If unset, incoming mcumgr frames are dropped. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*