This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

UART Init without FIFO:

I am using 3 uarts for my applications using nrf52xx, i want uart without fifo,i configure 3 uarts independently and use the

#define APP_UART_INIT(
 	P_COMM_PARAMS,
 	EVT_HANDLER,
 	IRQ_PRIO,
 	ERR_CODE 
)

for initialising my uarts.but this functions return a error as NRF_ERROR_INVALID_PARAM,

if (p_buffers == NULL)
{
     	return NRF_ERROR_INVALID_PARAM;
}

if any body have solution for multiple uart init, please help?

Related