mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
18 lines
425 B
Bash
Executable File
18 lines
425 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Start in-circuit debugging on this board: this script starts up the GDB
|
|
# client and connects to a GDB server.
|
|
#
|
|
# Start the GDB server first using the 'make debugserver' target
|
|
|
|
# @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
BINDIR=$1
|
|
ELFFILE=$2
|
|
|
|
# write GDB config file
|
|
echo "target extended-remote 127.0.0.1:2331" > $BINDIR/gdb.cfg
|
|
|
|
# run GDB
|
|
arm-none-eabi-gdb -tui -command=$BINDIR/gdb.cfg $ELFFILE
|