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?