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.

MSP430FR2433: MSP430 print to serial monitor help

Part Number: MSP430FR2433


How does the "Hello World" project template just work?

It uses printf, which I thought required some additional code to link the UART to the printf

I tested an empty project with the same code, but it does not work.

code:

int main(void)
{
int x = 10;
WDTCTL = WDTPW | WDTHOLD; // stop watchdog timer

printf("Garrett Black: %d\n", x);

return 0;
}

**Attention** This is a public forum