:orphan: .. title:: CONFIG_UART_0_INTERRUPT_DRIVEN .. kconfig:: CONFIG_UART_0_INTERRUPT_DRIVEN CONFIG_UART_0_INTERRUPT_DRIVEN ############################## *Enable interrupt support on port 0* Type: ``bool`` Help ==== .. code-block:: none This option enables UART interrupt support on port 0. Direct dependencies =================== \ :kconfig:`UART_INTERRUPT_DRIVEN ` && (\ :kconfig:`UART_0_NRF_UART ` || \ :kconfig:`UART_0_NRF_UARTE `) && \ :kconfig:`UART_NRFX ` && \ :kconfig:`SERIAL ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/serial/Kconfig.nrfx:47`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:26`` → ``/serial/Kconfig:116`` Menu path: (Top) → Device Drivers → Serial Drivers → nRF UART nrfx drivers .. code-block:: kconfig config UART_0_INTERRUPT_DRIVEN bool "Enable interrupt support on port 0" default y depends on UART_INTERRUPT_DRIVEN && (UART_0_NRF_UART || UART_0_NRF_UARTE) && UART_NRFX && SERIAL help This option enables UART interrupt support on port 0. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*