Hello List,
I am newbie to msp430 and wanted to know
about the support of the MSP430 USB-Debug-Interface.

I had downloaded the improved msp430-gdbproxy from,
ftp://ftp.soft-switch.org/pub/msp430-gdbproxy.exe
and start the gdb-proxy under cygwin window with
$msp430-gdbproxy msp430 USB(or TIUSB)
and then start msp430-gdb,then source gdb.ini as
mentioned in the manual.

Now, the question is the setting of breakpoints and
debugging the application till the breakpoint doesn't
seem to work. When I set a breakpoint and 'C'ontinue
till the breakpoint, the program doesnt seem to stop
at
that breakpoint. It rather keeps on going beyond the
breakpoint. Does the improved msp430-gdbproxy support
this or Am i missing something?

TIA,
Peri

The Makefile i use is 
***********************************************
NAME    = led
CPU     = msp430x1611
CFLAGS  = -mmcu=${CPU} -O2 -Wall -g
CFLAGS  += -Wall -Wstrict-prototypes
CC      = msp430-gcc

.PHONY: all clean

all: ${NAME}.elf ${NAME}.a43 ${NAME}.lst

${NAME}.a43: ${NAME}.elf
        msp430-objcopy -O ihex $^ $@

${NAME}.lst: ${NAME}.elf
        msp430-objdump -dSt $^ >$@

${NAME}.elf: ${NAME}.o
        ${CC} -mmcu=${CPU} -g -o $@ $<

${NAME}.o: ${NAME}.c
        msp430-gcc ${CFLAGS} -c $< 
        
clean:
        rm -f ${NAME}.elf ${NAME}.a43 ${NAME}.lst *.o
*****************************************************


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Reply via email to