This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Compiler/LAUNCHXL-CC1350: Sending 2 sets of information over UART

Part Number: LAUNCHXL-CC1350

Tool/software: TI C/C++ Compiler

Hi,

 is it possible to UART_write 2 different information? i am now unable to display two sets of information through UART with the code below

char buff[10]; // take a chance that 10 is always enough
sprintf(buff,"%d ",RSSIout);
UART_write(uart, buff, strlen(buff));
UART_write(uart, &Rxpacket, sizeof(rxpacket);

the display only shows 

char buff[10]; // take a chance that 10 is always enough
sprintf(buff,"%d ",RSSIout);
UART_write(uart, buff, strlen(buff));

is it possible to display both of this information in the same line?