mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
20 lines
321 B
Plaintext
20 lines
321 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
#
|
||
|
|
# Balloon default parameters
|
||
|
|
#
|
||
|
|
# NOTE: Script variables are declared/initialized/unset in the rcS script.
|
||
|
|
#
|
||
|
|
|
||
|
|
set VEHICLE_TYPE fw
|
||
|
|
|
||
|
|
if [ $AUTOCNF = yes ]
|
||
|
|
then
|
||
|
|
#
|
||
|
|
# Default parameters for balloon UAVs.
|
||
|
|
#
|
||
|
|
#
|
||
|
|
# FW takeoff acceleration can easily exceed ublox GPS 2G default.
|
||
|
|
#
|
||
|
|
param set GPS_UBX_DYNMODEL 8
|
||
|
|
fi
|