Description
send string via USART (from RAM, interrupt driven version)Definition
USART_send_str(char *str)Library
LIB/usart_int_lib.basUsage
On entry:str is a pointer to a string to be sent via the USART. The string to be sent is held in RAM.On exit:There is no return valueThis function will not return until all of the string has been queued for transmition. If the FIFO used to queue the string is smaller than the string being sent, then some of the string will be sent before this function returns and some of it will strill be in the FIFO waiting to be sent.