mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
22 lines
362 B
Bash
22 lines
362 B
Bash
#!/bin/sh
|
|
#
|
|
# @name 3DR Iris Quadrotor SITL (Vision)
|
|
#
|
|
# @type Quadrotor Wide
|
|
#
|
|
|
|
sh /etc/init.d-posix/10016_iris
|
|
|
|
if [ $AUTOCNF = yes ]
|
|
then
|
|
# EKF2: Vision position and heading
|
|
param set EKF2_AID_MASK 24
|
|
param set EKF2_EV_DELAY 5
|
|
|
|
# LPE: Vision + baro
|
|
param set LPE_FUSION 132
|
|
|
|
# AEQ: External heading set to use vision input
|
|
param set ATT_EXT_HDG_M 1
|
|
fi
|