:orphan: .. title:: UART_NRFX .. option:: CONFIG_UART_NRFX *nRF UART nrfx drivers* Type: ``bool`` 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. Direct dependencies =================== \ :option:`BOARD_HOLYIOT_YJ16019 ` || (\ :option:`SOC_FAMILY_NRF ` && \ :option:`SERIAL `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - n - y Symbols selected by this symbol =============================== - \ :option:`SERIAL_HAS_DRIVER ` - \ :option:`SERIAL_SUPPORT_INTERRUPT ` - \ :option:`SERIAL_SUPPORT_ASYNC ` Kconfig definitions =================== .. highlight:: kconfig At ``boards/arm/holyiot_yj16019/Kconfig.defconfig:14`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config UART_NRFX bool default n depends on \ :option:`BOARD_HOLYIOT_YJ16019 ` ---- At ``drivers/serial/Kconfig.nrfx:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:24`` → ``drivers/serial/Kconfig:93`` Menu path: (Top) → Device Drivers → Serial Drivers .. parsed-literal:: menuconfig UART_NRFX bool "nRF UART nrfx drivers" default y select \ :option:`SERIAL_HAS_DRIVER ` select \ :option:`SERIAL_SUPPORT_INTERRUPT ` select \ :option:`SERIAL_SUPPORT_ASYNC ` depends on \ :option:`SOC_FAMILY_NRF ` && \ :option:`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.)*