mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-23 16:57:35 +08:00
b9319b3843
init.d-posix:rcS Quiet Shell check warning
23 lines
365 B
Bash
23 lines
365 B
Bash
#!/bin/sh
|
|
#
|
|
# @name 3DR Iris Quadrotor SITL (Optical Flow)
|
|
#
|
|
# @type Quadrotor Wide
|
|
#
|
|
|
|
. ${R}etc/init.d-posix/airframes/10016_iris
|
|
|
|
if [ $AUTOCNF = yes ]
|
|
then
|
|
# EKF2
|
|
param set EKF2_AID_MASK 2
|
|
param set EKF2_EVP_NOISE 0.05
|
|
param set EKF2_EVA_NOISE 0.05
|
|
|
|
# LPE: Flow-only mode
|
|
param set LPE_FUSION 242
|
|
param set LPE_FAKE_ORIGIN 1
|
|
|
|
param set MPC_ALT_MODE 2
|
|
fi
|