:orphan: .. title:: CONFIG_UART_NRFX .. kconfig:: CONFIG_UART_NRFX CONFIG_UART_NRFX ################ *nRF UART nrfx drivers* Type: ``bool`` Help ==== .. code-block:: none Enable support for nrfx UART drivers for nRF MCU series. Peripherals with the same instance ID cannot be used together, e.g. UART_0 and UARTE_0. Direct dependencies =================== \ :kconfig:`BOARD_HOLYIOT_YJ16019 ` || (\ :kconfig:`SOC_FAMILY_NRF ` && \ :kconfig:`SERIAL `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - n - y Symbols selected by this symbol =============================== - \ :kconfig:`SERIAL_HAS_DRIVER ` - \ :kconfig:`SERIAL_SUPPORT_INTERRUPT ` - \ :kconfig:`SERIAL_SUPPORT_ASYNC ` Kconfig definitions =================== At ``/arm/holyiot_yj16019/Kconfig.defconfig:14`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config UART_NRFX bool default n depends on BOARD_HOLYIOT_YJ16019 ---- At ``/serial/Kconfig.nrfx:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:26`` → ``/serial/Kconfig:116`` Menu path: (Top) → Device Drivers → Serial Drivers .. code-block:: kconfig menuconfig UART_NRFX bool "nRF UART nrfx drivers" default y select SERIAL_HAS_DRIVER select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_ASYNC depends on SOC_FAMILY_NRF && SERIAL help Enable support for nrfx UART drivers for nRF MCU series. Peripherals with the same instance ID cannot be used together, e.g. UART_0 and UARTE_0. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*