Hi there,
I am currently working on the UART_Echo example given by Tivac. I am wondering what does the code highlighted in red do? I know that it calls to a function that links to cost uint8_t *pui8buffer which is a type of pointer for a ringbuffer. May if i anyone can shed some light or point me a direction where i can learn more about what it does?
Another question that is related will be why do we need put this "\033[2J" in front of Hello Text
void
UARTSend(const uint8_t *pui8Buffer, uint32_t ui32Count)
Question:
UARTSend((uint8_t *)"\033[2JHello text: ", 16);