I have been struggling with getting anyone from TI to answer phone calls or emails for the last 4 days. I have a MSP430-FET430UIF emulator which passes hardware self test described in the wiki. I successfully compiled and downloaded an LED toggle program (http://www.referencedesigner.com/tutorials/msp430/msp430_06.php) on the target board which has an MSP430FG4618 microcontroller on it. The LED (D1) on the development board is connected to Pin 12 of the microcontroller. The MSP430FG4618 datasheet shows that Pin 12 is designated as P5.1. Anyhow, the LED does not blink at all. TI's radio silence for the last 4 days is very frustrating. Can some one please throw some pointers at me?
Actual code:
#include <msp430x14x.h>
unsigned int delay ( unsigned int x)
{
unsigned int i,j;
for (i = 0; i<= x; i++)
{
for(j=0;j<=1000; j++);
}
return 0;
}
int main( void )
{
// Stop watchdog timer to prevent time out reset
WDTCTL = WDTPW + WDTHOLD;
P5DIR |= BIT1;
while(true)
{
P5OUT|= BIT1 ; // P5.1 High
delay(100);
P5OUT&=~BIT1; // P5.1 Low
delay(100);
}
return 0;
}