mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
- introduce per module parameters (EKF2_EN, LPE_EN, ATT_EN) - add basic checks to prevent EKF2 + LPE running simultaneously
30 lines
433 B
Bash
30 lines
433 B
Bash
#!/bin/sh
|
|
#
|
|
# Standard apps for fixed wing
|
|
#
|
|
# NOTE: Script variables are declared/initialized/unset in the rcS script.
|
|
#
|
|
|
|
#
|
|
# Start Control Allocator
|
|
#
|
|
control_allocator start
|
|
|
|
#
|
|
# Start attitude controller.
|
|
#
|
|
fw_rate_control start
|
|
fw_att_control start
|
|
fw_pos_control start
|
|
airspeed_selector start
|
|
|
|
#
|
|
# Start attitude control auto-tuner
|
|
#
|
|
fw_autotune_attitude_control start
|
|
|
|
#
|
|
# Start Land Detector.
|
|
#
|
|
land_detector start fixedwing
|