I am using the following commands to debug a program running on the Redwire Econotag r3 (which is based on a ARM microcontroller).
xterm -e "openocd -f interface/ftdi/redbee-econotag.cfg -f board /redbee.cfg" &
sleep 1
echo -e "soft_reset_halt\n set *0x80020010 = 0\n" | nc -i 1 localho st 4444 > /dev/null &
arm-none-eabi-gdb hello.elf -x debugOCD.gdb
where debugOCD.gdb
contains:
target remote localhost:3333
monitor soft_reset_halt
load hello.elf 0x00400000
b _start
I'd like to open the debugger inside VIM, using ConqueGDB (or any other debugging interface within VIM).
Any clues? Thank you!!
After some research, I've been able to find an answer to my question.
To use the desired debugger with ConqueGDB, it has to be specified in
g:ConqueGdb_GdbExe
variable BEFORE the plugin is loaded.To do so, I modified my
.vimrc
file to look like this (note that I'm using Vundle to manage VIM plugins):Now, ConqueGDB can be used to debug the remote board. From VIM command line, execute:
In order not to specify two different files in this command, the symbols can be loaded from the GDB commands file. OpenOCD execution and target connection can be handled the same way. Here is what my
debugOCD.gdb
looks like.That's all, it would be fine to set an alias for this command, so it is easier to memorize, but I guess this is trivial. Here you can see a screenshot of VIM with ConqueGDB working.