I want to use CONFIG_UART_0_NRF_UART instead of CONFIG_UART_0_NRF_UARTE. But I don't get any option for this because CONFIG_UART_0_NRF_UARTE is selected by default .
I want to have
#
# Serial Drivers
#
CONFIG_UART_NRFX=y
CONFIG_UART_0_NRF_UART=y
# CONFIG_UART_0_INTERRUPT_DRIVEN is not set
CONFIG_UART_0_ASYNC=y
# CONFIG_UART_0_NRF_PARITY_BIT is not set
CONFIG_NRF_UART_PERIPHERAL=y
But always getting
#
# Serial Drivers
#
CONFIG_UART_NRFX=y
CONFIG_UART_0_NRF_UARTE=y
CONFIG_UART_0_ENHANCED_POLL_OUT=y
# CONFIG_UART_0_INTERRUPT_DRIVEN is not set
CONFIG_UART_0_ASYNC=y
# CONFIG_UART_0_NRF_PARITY_BIT is not set
CONFIG_UART_0_NRF_TX_BUFFER_SIZE=32
# CONFIG_UART_0_NRF_HW_ASYNC is not set
# CONFIG_UART_0_NRF_ASYNC_LOW_POWER is not set
CONFIG_UART_ENHANCED_POLL_OUT=y
CONFIG_NRF_UARTE_PERIPHERAL=y
Also if I put the required configuration in the proj.config, cmake fails to compile the project.
This is what I can get.