mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
15 lines
252 B
Bash
Executable File
15 lines
252 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -o xtrace
|
|
|
|
gdb-multiarch -silent -nx -batch \
|
|
-ex "target remote localhost:2331" \
|
|
-ex "monitor reset 0" \
|
|
-ex "load" \
|
|
-ex "monitor reset 0" \
|
|
-ex "monitor go" \
|
|
-ex "monitor sleep 3000" \
|
|
-ex "disconnect" \
|
|
-ex "quit" \
|
|
${1}
|