In the nRF5 SDK there are two uart drivers, UART and UARTE. The UARTE driver makes use of the DMA whilts the UART driver uses interupts. This is what I understood when I used the driver in the nRF5 SDK.
In the Zephyr implementation, does the driver use DMA?
I see in the Central Uart sample the configuration specifies
CONFIG_NRFX_UARTE0=y
From this can I assume that the driver is using the DMA UartE peripheral?
Would CONFIG_NRFX_UART0=y then mean that the interrupt version would be used?
Thank You