2023-12-04 05:55:08 -04:00
|
|
|
#!/usr/bin/env bash
|
2022-04-07 02:09:40 -03:00
|
|
|
|
|
|
|
# script to more easily get a backtrace from an ArduPilot crash_dump.bin
|
|
|
|
|
|
|
|
[ $# -eq 2 ] || {
|
|
|
|
echo "Usage: gdb_crashdump.sh ELF_FILE CRASH_DUMP"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
ELF_FILE=$1
|
|
|
|
CRASH_DUMP=$2
|
|
|
|
|
|
|
|
arm-none-eabi-gdb -nx "$ELF_FILE" -ex "set target-charset ASCII" -ex "target remote | modules/CrashDebug/bins/lin64/CrashDebug --elf $ELF_FILE --dump $CRASH_DUMP"
|