mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 09:28:58 +00:00
* add support for unmanned underwater vehicles: * airframe uuv_generic + uuv_hippocammpus including mav_type = 12 for submarines * mixer for UUVs with X-shaped thruster setup similar to quadcopter * add module uuv_att_control for underwater robot attitude control * add rc.uuv_defaults/apps for autostarting e.g. ekf2 and uuv_att_control app
27 lines
785 B
Bash
27 lines
785 B
Bash
#!/bin/sh
|
|
#
|
|
# Standard apps for uuvs. Attitude/Position estimator, Attitude/Position control.
|
|
#
|
|
# NOTE: Script variables are declared/initialized/unset in the rcS script.
|
|
#
|
|
|
|
###############################################################################
|
|
# Begin Estimator Group Selection #
|
|
###############################################################################
|
|
|
|
ekf2 start
|
|
|
|
###############################################################################
|
|
# End Estimator Group Selection #
|
|
###############################################################################
|
|
|
|
#
|
|
# Start UUV Attitude Controller.
|
|
#
|
|
uuv_att_control start
|
|
|
|
#
|
|
# Start UUV Land Detector.
|
|
#
|
|
land_detector start rover
|