You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
459 B
30 lines
459 B
#!/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_mode_manager start
|
|
fw_lat_lon_control start
|
|
airspeed_selector start
|
|
|
|
#
|
|
# Start attitude control auto-tuner
|
|
#
|
|
fw_autotune_attitude_control start
|
|
|
|
#
|
|
# Start Land Detector.
|
|
#
|
|
land_detector start fixedwing
|
|
|