CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/Tools/autotest/fg_quad_view.sh
Views: 1798
1
#!/bin/sh
2
3
AUTOTESTDIR=$(dirname $0)
4
5
nice fgfs \
6
--native-fdm=socket,in,10,,5503,udp \
7
--fdm=external \
8
--aircraft=arducopter \
9
--fg-aircraft="$AUTOTESTDIR/aircraft" \
10
--airport=KSFO \
11
--geometry=650x550 \
12
--bpp=32 \
13
--disable-hud-3d \
14
--disable-horizon-effect \
15
--timeofday=noon \
16
--disable-sound \
17
--disable-fullscreen \
18
--disable-random-objects \
19
--disable-ai-models \
20
--fog-disable \
21
--disable-specular-highlight \
22
--disable-anti-alias-hud \
23
--wind=0@0 \
24
$*
25
26