Tool/software: Code Composer Studio
HowTO SEND STRINGS TO REALTERM IN THE CASE OF MSP430FR2355.i am able to send single characters or numbers but how could I send string of characters?
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.
Tool/software: Code Composer Studio
HowTO SEND STRINGS TO REALTERM IN THE CASE OF MSP430FR2355.i am able to send single characters or numbers but how could I send string of characters?
Hi Amit,
There are two methods:
1. Create a unsigned char type array and send the array element one by one.
unsigned char str[13]={"Hello World!"};
while(*str != '\0')
{
UART_SendByte(*str);
str++;
}
2. Use printf function like printf("Hello World!"). This need you reroute printf output to UART port you used. Please see below guide for more details.

Regards,
Winter