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.
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
Dan Seta said:I just got my MSP430 Value Line LaunchPad Development Tool kit and am trying to run the first test project to blink a light.
Unfortunately the G2 Launchpads are not supported on MacOS. Sorry about the inconvenience.
http://processors.wiki.ti.com/index.php/MacOS_Host_Support_CCSv6
Unfortunately, the G2 LaunchPad is not directly supported by either the Mac or Linux versions of CCS. The G2 was the first LaunchPad - which broke new ground packing an emulator onto a small, low-cost development board. Over the last few years, we've enhanced our emulation logic so that it can support many new features, including the additional host operating systems.
If you want to use the MacOS, here are three suggestions:
Hope this helps,
Scott
The configuration choices have been kept the same as they are on Windows. However, the older G2 and FR5739 LaunchPads are not supported on MacOS. The G2 Launchpad is not supported on Linux either, and there are no plans to add this support. I will pass the feedback to the CCS team to see if we can somehow notify users earlier in the process (perhaps at install time) that these launchpads are not supported.
Dan Seta said:How about the MSP432 P401R? Is that one supported there?
Yes MSP432 Launchpad is supported.