Below is the code I'm using to try and print information to the CCE console (CIO). I am following a tutorial, but have been unable to get anything to print. Is there something I'm missing? I am sorry if it does not format properly. Anyone have a suggestion on how to paste code in?
#include
<msp430x22x4.h>
#include
<stdio.h>
void
main()
{
WDTCTL = WDTPW + WDTHOLD;
while(1)
{
printf(
"Hello, World");
}
}