:orphan: .. title:: UART_CONSOLE_MCUMGR .. option:: CONFIG_UART_CONSOLE_MCUMGR *Enable UART console mcumgr passthrough* Type: ``bool`` 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. Direct dependencies =================== \ :option:`UART_CONSOLE ` && \ :option:`CONSOLE ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Kconfig definition ================== .. highlight:: kconfig At ``drivers/console/Kconfig:75`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers → Use UART for console .. parsed-literal:: config UART_CONSOLE_MCUMGR bool "Enable UART console mcumgr passthrough" depends on \ :option:`UART_CONSOLE ` && \ :option:`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.)*