mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-01 03:00:35 +08:00
13 lines
235 B
Bash
Executable File
13 lines
235 B
Bash
Executable File
#! /bin/sh
|
|
|
|
gdb-multiarch -nx -batch \
|
|
-ex "target remote localhost:2331" \
|
|
-ex "monitor reset 0" \
|
|
-ex "load" \
|
|
-ex "compare-sections" \
|
|
-ex "monitor reset 0" \
|
|
-ex "monitor sleep 1000" \
|
|
-ex "monitor go" \
|
|
-ex "kill" \
|
|
${1}
|