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.

MSP430f5529 on MSP-TS430PN80USB

Other Parts Discussed in Thread: MSP430F5529, MSP-TS430PN80USB

I'm a newbie at programming so please bear with me. I have a MSP430f5529 chip in a msp-ts430pn80usb board connected with a msp-fet430uif connected to a computer. I'm trying the sample code at lighting the LED but nothing's happening. I'm using IAR.

code im using:

#include <msp430f5529.h>

void main(void) {   volatile unsigned int i;

 WDTCTL = WDTPW+WDTHOLD;                   // Stop WDT  

 P1DIR |= BIT0;                            // P1.0 set as output

  while(1)                                  // continuous loop  

 {   

  P1OUT ^= BIT0;                          // XOR P1.0    

 for(i=50000;i>0;i--);                   // Delay  

 }

 }

**Attention** This is a public forum