mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-12 13:37:35 +08:00
cac9c51ac8
- SYS_USE_IO is now off by default (enabled by default per board)
72 lines
964 B
Bash
72 lines
964 B
Bash
#!/bin/sh
|
|
#
|
|
# Vehicle configuration setup script.
|
|
#
|
|
# NOTE: Script variables are declared/initialized/unset in the rcS script.
|
|
#
|
|
|
|
#
|
|
# Fixed wing setup.
|
|
#
|
|
if [ $VEHICLE_TYPE = fw ]
|
|
then
|
|
# Start standard fixedwing apps.
|
|
. ${R}etc/init.d/rc.fw_apps
|
|
fi
|
|
|
|
#
|
|
# Multicopter setup.
|
|
#
|
|
if [ $VEHICLE_TYPE = mc ]
|
|
then
|
|
# Start standard multicopter apps.
|
|
. ${R}etc/init.d/rc.mc_apps
|
|
fi
|
|
|
|
#
|
|
# UGV setup.
|
|
#
|
|
if [ $VEHICLE_TYPE = rover ]
|
|
then
|
|
# Start standard UGV apps.
|
|
. ${R}etc/init.d/rc.rover_apps
|
|
fi
|
|
|
|
#
|
|
# VTOL setup.
|
|
#
|
|
if [ $VEHICLE_TYPE = vtol ]
|
|
then
|
|
# Start standard vtol apps.
|
|
. ${R}etc/init.d/rc.vtol_apps
|
|
fi
|
|
|
|
#
|
|
# Airship setup.
|
|
#
|
|
if [ $VEHICLE_TYPE = airship ]
|
|
then
|
|
# Start airship apps.
|
|
. ${R}etc/init.d/rc.airship_apps
|
|
fi
|
|
|
|
#
|
|
# UUV setup
|
|
#
|
|
if [ $VEHICLE_TYPE = uuv ]
|
|
then
|
|
# Start standard vtol apps.
|
|
. ${R}etc/init.d/rc.uuv_apps
|
|
fi
|
|
|
|
|
|
|
|
#
|
|
# Generic setup (autostart ID not found).
|
|
#
|
|
if [ $VEHICLE_TYPE = none ]
|
|
then
|
|
echo "No autostart ID found"
|
|
ekf2 start &
|
|
fi
|