Tool/software:
In the uart_echo demo,
while(ui32Count--)
{
//
// Write the next character to the UART.
//
MAP_UARTCharPutNonBlocking(UART0_BASE, *pui8Buffer++);
}
What is the significance of MAP_ at the beginning of a function name? And where is the definition for this full name?
Is there an example showing the logic for how to deal with the FIFO being full already when the function is called?
Thanks