:orphan: .. title:: CONFIG_UART_LINE_CTRL .. kconfig:: CONFIG_UART_LINE_CTRL CONFIG_UART_LINE_CTRL ##################### *Enable Serial Line Control API* Type: ``bool`` Help ==== .. code-block:: none This enables the API for apps to control the serial line, such as baud rate, CTS and RTS. Implementation is up to individual driver. Says no if not sure. Direct dependencies =================== (\ :kconfig:`USB_DEVICE_STACK ` && \ :kconfig:`BOARD_BL654_USB `) || (\ :kconfig:`USB_DEVICE_STACK ` && \ :kconfig:`BOARD_DEGU_EVK `) || \ :kconfig:`SERIAL ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - y - y Kconfig definitions =================== At ``/arm/bl654_usb/Kconfig.defconfig:31`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config UART_LINE_CTRL bool default y depends on USB_DEVICE_STACK && BOARD_BL654_USB ---- At ``/arm/degu_evk/Kconfig.defconfig:22`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config UART_LINE_CTRL bool default y depends on USB_DEVICE_STACK && BOARD_DEGU_EVK ---- At ``/serial/Kconfig:68`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:26`` Menu path: (Top) → Device Drivers → Serial Drivers .. code-block:: kconfig config UART_LINE_CTRL bool "Enable Serial Line Control API" depends on SERIAL help This enables the API for apps to control the serial line, such as baud rate, CTS and RTS. Implementation is up to individual driver. Says no if not sure. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*