Mindaugas Karciauskas wrote:
Have anybody used KDevelop editor for developing MSP430?
If yes, how one needs to configure it?
Thank you in advance
Yes. I've used it some time ago. In the project options, you can set the
directory to find the GDB debugger. I have MSPGCC installed under
'/usr/local/msp430/', and I set the GDB dir to '/usr/local/msp430/bin/'. I've
make a symbolic link to '/usr/local/msp430/bin/msp430-gdb' using the name
'/usr/local/msp430/bin/gdb'. So kdevelop use msp430-gdb to debug in my project.
I also set the gdb script to use as '/usr/local/msp430/.gdbinit'. The content
of that file is:
set remoteaddresssize 64
set remotetimeout 999999
set download-write-size 512
target remote localhost:2000
set remote memory-write-packet-size 1024
set remote memory-write-packet-size fixed
set remote memory-read-packet-size 1024
set remote memory-read-packet-size fixed
To compile I used custom Makefiles that kdevelop call from the project.
Greetings
Mario Palomo