mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
14 lines
264 B
Bash
Executable File
14 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# useful example script for HIL testing with ArduPlane
|
|
|
|
set -x
|
|
|
|
killall -q JSBSim
|
|
pkill -f runsim.py
|
|
set -e
|
|
|
|
autotest=$(dirname $(readlink -e $0))
|
|
pushd $autotest/../../ArduPlane
|
|
../Tools/autotest/jsbsim/runsim.py --home=-35.362942,149.165193,585,354
|