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.

printf in CCE v3.1 SR1

Other Parts Discussed in Thread: MSP430F2274

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");

}

}