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

Where is UART on NRF52810?

I want to print a char like this,

Fullscreen
1
2
3
4
5
6
7
8
9
static void _putc(char ch)
{
NRF_UART0->TXD = ch;
while(NRF_UART0->EVENTS_TXDRDY != 1){
}
NRF_UART0->EVENTS_TXDRDY = 0;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

But I only find UARTE on NRF52810, where is UART? or How to do it without the app_uart library?