You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
595 B
20 lines
595 B
#!/bin/bash |
|
|
|
set -e |
|
set -x |
|
|
|
autotest=$(dirname $(readlink -e $0)) |
|
pushd $autotest/../../ArduPlane |
|
make clean sitl-mavlink10 |
|
|
|
tfile=$(mktemp) |
|
echo r > $tfile |
|
#gnome-terminal -e "gdb -x $tfile --args /tmp/ArduPlane.build/ArduPlane.elf" |
|
gnome-terminal -e /tmp/ArduPlane.build/ArduPlane.elf |
|
#gnome-terminal -e "valgrind -q /tmp/ArduPlane.build/ArduPlane.elf" |
|
sleep 2 |
|
rm -f $tfile |
|
gnome-terminal -e '../Tools/autotest/jsbsim/runsim.py --home=-35.362938,149.165085,584,270' |
|
sleep 2 |
|
popd |
|
mavproxy.py --master tcp:127.0.0.1:5760 --sitl 127.0.0.1:5501 --out 127.0.0.1:14550 --out 127.0.0.1:14551 --mav10
|
|
|