Other Parts Discussed in Thread: MSP-EXP430FR5739
Hi Guys,
Couple of questions...
1) Just got a new FR5739 exp board, connected it and tried the blink example (LED Toggle code example in CCS)...unfortunately it is not working. It debugs OK but when i run the code no led blinks...tried changing the code a bit but no joy.
#include <msp430.h>
int main(void)
{
WDTCTL = WDTPW + WDTHOLD; // Stop WDT
P1DIR |= BIT0;
P1OUT |= BIT0;
while(1)
{
P1OUT ^= BIT0;
__delay_cycles(100000);
}
}
2) I have 2 boards connected in CCS (G2553 and FR5739) and there seems to be target issues (target seutp does not match target type). How do I resolve this conflict?
I have tried to go into target config>new file etc... to no avail...still getting probs.
Any help greatly appreciated.
Stefano
Any ideas?
Thanks
Stefano