Dear Sirs! I have a question to you since I can't find answer to this one. I'm learning to use the mspgcc compiler for the MSP430 microcontroller series and one of most important things I think I have to do is debugging. But msp430-insight hasn't features I need (e.g. external pin stimuli etc.) IAR EWB instead has these features but the object code generated by mspgcc allows only debugging at the assembler level. Is it possible to convert the .elf format (or other one generated by mspgcc) in the such way that allows debugging by IAR EWB at the C-level? In examples I found the directory (leds) that contains (in the makefile) the following strings:
iar: ${NAME} msp430-objcopy -O msp430asm ${NAME} ${NAME}.s43 a430 -r ${NAME}.s43 -o ${NAME}.r43 xlink -cmsp430 -r $(NAME).r43 -o ${NAME}.d43 As I understand the second line of this code produces the asm code from .elf file. But when I trying to use this command binutil says to me that msp430asm is the invalid BFD target. Supported BFD targets actually don't contain this one (msp430asm). What am I doing incorrect?! You know, this example contained in mspgcc and I didn't change it. Thank you for any information you can give me. Sincerely yourth, Michael Korobov, National aerospace University, Kharkov, Ukraine