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.
21 lines
356 B
21 lines
356 B
#!/bin/sh
|
|
#
|
|
# Standard apps for airships. Attitude/Position estimator, Attitude/Position control.
|
|
#
|
|
# NOTE: Script variables are declared/initialized/unset in the rcS script.
|
|
#
|
|
|
|
#
|
|
# Start Control Allocator
|
|
#
|
|
control_allocator start
|
|
|
|
#
|
|
# Start Airship Attitude Controller.
|
|
#
|
|
airship_att_control start
|
|
|
|
#
|
|
# Start Land Detector.
|
|
#
|
|
land_detector start airship
|
|
|