:orphan: .. title:: UART_LINE_CTRL .. option:: CONFIG_UART_LINE_CTRL *Enable Serial Line Control API* Type: ``bool`` 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. Direct dependencies =================== (\ :option:`USB ` && \ :option:`BOARD_DEGU_EVK `) || \ :option:`SERIAL ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definitions =================== .. highlight:: kconfig At ``boards/arm/degu_evk/Kconfig.defconfig:28`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config UART_LINE_CTRL bool default y depends on \ :option:`USB ` && \ :option:`BOARD_DEGU_EVK ` ---- At ``drivers/serial/Kconfig:47`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:24`` Menu path: (Top) → Device Drivers → Serial Drivers .. parsed-literal:: config UART_LINE_CTRL bool "Enable Serial Line Control API" depends on \ :option:`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.)*