Other Parts Discussed in Thread: MSP430WARE, MSP430F5510, MSP-FET
Hi
I'm currently evaluating Code Composer Version: 6.0.1.00040
I've go the latest version of MSP430ware, and running the TI compiler V4.4.3
My target is MSP430F5510 and i'm using the MSP-FETU430IF and SWB port.
Having a problem when I run the debugger, the debug does not start at main, and run instantly, if I pause the debugger it states "source not available", and reset takes me back to
/*****************************************************************************/
/* C_INT00_NOINIT_NOEXIT() - Specialized version of _c_int00 that does not */
/* perform auto initialization and calls abort */
/* directly. */
/*****************************************************************************/
#pragma CLINK(_c_int00_noargs_noexit)
CSTART_DECL _c_int00_noargs_noexit()
{
STACK_INIT();
if (_system_pre_init() != 0) _auto_init();
main(0);
abort();
}
there are not warnings or errors in the code flagged.
I've tried clean, and rebuilding all.
rebooting (PC , MSP-FET and DUT)
I will play around for ages, and find a line in the code it doesn't like... (I say doesn't like, but there are no errors or warning), comment out the line, and then the debugger runs.
Sometimes the line is some really basic, like a OR of some constants into a unsigned char. And commenting it out makes the bugger work. Then I will play around with some other code, and put the line back in, and the bugger works again. . D'oh
It is making evaluation a nightmare.
Nick