Other Parts Discussed in Thread: MSP430G2553
Apologies in advance if this is the wrong forum, but I just got my MSP430 Value Line LaunchPad Development Tool kit and am trying to run the first test project to blink a light. After entering the code and clicking the debug option in CCS for Mac beta it hangs on the screen that says 'Configuring Debugger (may take a few minutes on first launch).
I think the build occurs properly. Here is the output in the console window:
**** Build of configuration Release for project Blinky ****
/Applications/ti/ccsv6/utils/bin/gmake -k all
gmake: Nothing to be done for 'all'.
**** Build Finished ****
Here is the code copied from the editor:
#include <msp430g2553.h>
unsigned int i = 0;
/*
* main.c
*/
int main(void) {
WDTCTL = WDTPW | WDTHOLD; // Stop watchdog timer
P1DIR |= 0x01;
for (;;)
{
P1OUT ^= 0x01;
for(i=0; i< 20000; i++);
}
}
I saw on a different post instructions on trying to launch the debugger manually, but couldn't seem to get that to work correctly. Please let me know what I am doing wrong. Is there any way to get more output from the debugger configuration process to see where it might be hanging?
Thanks in advance