:orphan: .. title:: UART_SHELL_ON_DEV_NAME .. option:: CONFIG_UART_SHELL_ON_DEV_NAME *Device Name of UART Device for SHELL_BACKEND_SERIAL* Type: ``string`` Help ==== This option specifies the name of UART device to be used for the SHELL UART backend. In case when DTS is enabled (HAS_DTS), the default value is set from DTS chosen node 'zephyr,shell-uart' but can be overridden here. Direct dependencies =================== (\ :option:`USB ` && \ :option:`BOARD_DEGU_EVK `) || (\ :option:`SHELL_BACKEND_SERIAL ` && \ :option:`SHELL_BACKENDS ` && \ :option:`SHELL `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - "CDC_ACM_0" - "" if \ :option:`HAS_DTS ` - "UART_0" Kconfig definitions =================== .. highlight:: kconfig At ``boards/arm/degu_evk/Kconfig.defconfig:34`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config UART_SHELL_ON_DEV_NAME string default "CDC_ACM_0" depends on \ :option:`USB ` && \ :option:`BOARD_DEGU_EVK ` ---- At ``subsys/shell/Kconfig.backends:41`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:41`` → ``subsys/shell/Kconfig:18`` Menu path: (Top) → Sub Systems and OS Services → Shell → Enable shell backends → Enable serial backend .. parsed-literal:: config UART_SHELL_ON_DEV_NAME string "Device Name of UART Device for SHELL_BACKEND_SERIAL" default "" if \ :option:`HAS_DTS ` default "UART_0" depends on \ :option:`SHELL_BACKEND_SERIAL ` && \ :option:`SHELL_BACKENDS ` && \ :option:`SHELL ` help This option specifies the name of UART device to be used for the SHELL UART backend. In case when DTS is enabled (HAS_DTS), the default value is set from DTS chosen node 'zephyr,shell-uart' but can be overridden here. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*