forked from Archive/PX4-Autopilot
27 lines
374 B
Bash
27 lines
374 B
Bash
#!/bin/sh
|
|
#
|
|
# Standard apps for unmanned ground vehicles (UGV).
|
|
#
|
|
# NOTE: Script variables are declared/initialized/unset in the rcS script.
|
|
#
|
|
|
|
#
|
|
# Start the attitude and position estimator.
|
|
#
|
|
ekf2 start &
|
|
|
|
#
|
|
# Start Control Allocator
|
|
#
|
|
control_allocator start
|
|
|
|
#
|
|
# Start attitude controllers.
|
|
#
|
|
rover_pos_control start
|
|
|
|
#
|
|
# Start Land Detector.
|
|
#
|
|
land_detector start rover
|