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;
}

