Description
send string via USART (from code memory, interrupt driven version)Definition
USART_send_str_code(char * const 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 a constant string held in code memory.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.