Datasheet

Flyport Wi-Fi and Ethernet Programmer's guide framework 2.3 (rev 1.0) www.openpicus.com
Send a string to the UART UARTWrite(int port, char *buffer);
This function writes the specific string on the UART port.
Parameters:
port: the UART port
buffer the string to write (a NULL terminated char array)
Send a char to the UART UARTWriteCh(int port, char chr);
This function writes a specific char to the UART port.
Parameters:
port: the UART port
chr the character to write
Flush the UART input buffer UARTFlush(int port);
This function clears the buffer of the specified UART port.
Parameters:
port: the UART port
24