Files
bizhang_-obav/ROMFS/px4fmu_common/init.d/rcS

528 lines
9.6 KiB
Plaintext
Raw Normal View History

#!nsh
#
# PX4FMU startup script.
#
# Default to auto-start mode. An init script on the microSD card
# can change this to prevent automatic startup of the flight script.
#
set MODE autostart
set RC_FILE /fs/microsd/etc/rc.txt
set CONFIG_FILE /fs/microsd/etc/config.txt
set EXTRAS_FILE /fs/microsd/etc/extras.txt
2014-01-11 18:45:56 +01:00
set TUNE_OUT_ERROR ML<<CP4CP4CP4CP4CP4
#
# Try to mount the microSD card.
#
2014-01-10 22:04:56 +01:00
echo "[init] Looking for microSD..."
if mount -t vfat /dev/mmcsd0 /fs/microsd
then
set LOG_FILE /fs/microsd/bootlog.txt
2014-01-10 22:04:56 +01:00
echo "[init] microSD card mounted at /fs/microsd"
# Start playing the startup tune
tone_alarm start
else
set LOG_FILE /dev/null
2014-01-10 22:04:56 +01:00
echo "[init] No microSD card found"
# Play SOS
tone_alarm error
fi
#
# Look for an init script on the microSD card.
# Disable autostart if the script found.
#
if [ -f $RC_FILE ]
2012-12-27 13:17:43 +01:00
then
echo "[init] Executing init script: $RC_FILE"
sh $RC_FILE
set MODE custom
else
echo "[init] Init script not found: $RC_FILE"
fi
2013-07-18 10:01:03 +02:00
# if this is an APM build then there will be a rc.APM script
# from an EXTERNAL_SCRIPTS build option
if [ -f /etc/init.d/rc.APM ]
then
if sercon
then
echo "[init] USB interface connected"
fi
2014-01-10 13:18:34 +01:00
echo "[init] Running rc.APM"
2013-01-21 08:15:13 +11:00
# if APM startup is successful then nsh will exit
sh /etc/init.d/rc.APM
fi
2013-07-18 10:01:03 +02:00
if [ $MODE == autostart ]
then
echo "[init] AUTOSTART mode"
2013-08-25 19:27:11 +02:00
#
# Start CDC/ACM serial driver
2013-08-25 19:27:11 +02:00
#
sercon
2013-08-25 19:27:11 +02:00
#
# Start the ORB (first app to start)
#
uorb start
#
# Load parameters
2013-08-25 19:27:11 +02:00
#
set PARAM_FILE /fs/microsd/params
if mtd start
then
set PARAM_FILE /fs/mtd_params
fi
param select $PARAM_FILE
if param load
then
echo "[init] Parameters loaded: $PARAM_FILE"
else
echo "[init] ERROR: Parameters loading failed: $PARAM_FILE"
2014-01-12 17:43:33 +01:00
fi
2013-08-25 19:27:11 +02:00
#
# Start system state indicator
#
if rgbled start
2013-08-17 15:48:13 +02:00
then
2014-01-10 13:18:34 +01:00
echo "[init] Using external RGB Led"
2013-08-25 19:27:11 +02:00
else
if blinkm start
then
echo "[init] Using blinkm"
2013-08-25 19:27:11 +02:00
blinkm systemstate
fi
2013-08-17 15:48:13 +02:00
fi
#
# Set default values
#
set HIL no
set VEHICLE_TYPE none
set MIXER none
2014-01-11 17:52:29 +01:00
set USE_IO yes
set OUTPUT_MODE none
set PWM_OUTPUTS none
set PWM_RATE none
set PWM_DISARMED none
set PWM_MIN none
set PWM_MAX none
2014-01-11 17:52:29 +01:00
set MKBLCTRL_MODE none
set FMU_MODE pwm
set MAV_TYPE none
2013-08-25 19:27:11 +02:00
#
2014-01-10 22:04:56 +01:00
# Set DO_AUTOCONFIG flag to use it in AUTOSTART scripts
#
2014-01-10 13:18:34 +01:00
if param compare SYS_AUTOCONFIG 1
2013-10-19 09:45:34 +02:00
then
2014-01-10 13:18:34 +01:00
set DO_AUTOCONFIG yes
else
set DO_AUTOCONFIG no
fi
2014-01-11 17:52:29 +01:00
2013-08-25 19:27:11 +02:00
#
2014-01-08 20:55:12 +01:00
# Set parameters and env variables for selected AUTOSTART
2013-08-25 19:27:11 +02:00
#
if param compare SYS_AUTOSTART 0
then
echo "[init] Don't try to find autostart script"
else
sh /etc/init.d/rc.autostart
fi
2013-08-25 19:27:11 +02:00
#
# Override parameters from user configuration file
2013-08-25 19:27:11 +02:00
#
if [ -f $CONFIG_FILE ]
then
echo "[init] Reading config: $CONFIG_FILE"
sh $CONFIG_FILE
else
echo "[init] Config file not found: $CONFIG_FILE"
fi
#
# If autoconfig parameter was set, reset it and save parameters
#
if [ $DO_AUTOCONFIG == yes ]
then
param set SYS_AUTOCONFIG 0
param save
fi
2014-01-11 17:52:29 +01:00
set IO_PRESENT no
if [ $USE_IO == yes ]
then
2014-01-11 17:52:29 +01:00
#
# Check if PX4IO present and update firmware if needed
#
if [ -f /etc/extras/px4io-v2_default.bin ]
then
2014-01-11 17:52:29 +01:00
set IO_FILE /etc/extras/px4io-v2_default.bin
else
set IO_FILE /etc/extras/px4io-v1_default.bin
fi
if px4io checkcrc $IO_FILE
then
echo "[init] PX4IO CRC OK"
echo "PX4IO CRC OK" >> $LOG_FILE
set IO_PRESENT yes
else
2014-01-23 08:25:56 +01:00
echo "[init] Trying to update"
2014-01-23 08:43:55 +01:00
echo "PX4IO Trying to update" >> $LOG_FILE
2014-01-11 18:45:56 +01:00
tone_alarm MLL32CP8MB
2014-01-11 17:52:29 +01:00
if px4io forceupdate 14662 $IO_FILE
2013-08-31 11:56:39 +02:00
then
2014-01-11 17:52:29 +01:00
usleep 500000
if px4io checkcrc $IO_FILE
then
echo "[init] PX4IO CRC OK, update successful"
2014-01-11 17:52:29 +01:00
echo "PX4IO CRC OK after updating" >> $LOG_FILE
2014-01-11 18:45:56 +01:00
tone_alarm MLL8CDE
2014-01-11 17:52:29 +01:00
set IO_PRESENT yes
else
echo "[init] ERROR: PX4IO update failed"
2014-01-11 17:52:29 +01:00
echo "PX4IO update failed" >> $LOG_FILE
2014-01-23 18:39:32 +01:00
tone_alarm $TUNE_OUT_ERROR
2014-01-11 17:52:29 +01:00
fi
else
echo "[init] ERROR: PX4IO update failed"
2014-01-11 17:52:29 +01:00
echo "PX4IO update failed" >> $LOG_FILE
2014-01-23 18:39:32 +01:00
tone_alarm $TUNE_OUT_ERROR
2013-08-31 11:56:39 +02:00
fi
2014-01-11 17:52:29 +01:00
fi
if [ $IO_PRESENT == no ]
then
2014-01-11 18:45:56 +01:00
echo "[init] ERROR: PX4IO not found"
tone_alarm $TUNE_OUT_ERROR
2013-08-31 11:56:39 +02:00
fi
fi
2013-08-25 19:27:11 +02:00
#
2014-01-11 17:52:29 +01:00
# Set default output if not set
#
if [ $OUTPUT_MODE == none ]
2013-12-28 22:52:23 +01:00
then
if [ $USE_IO == yes ]
2014-01-11 17:52:29 +01:00
then
set OUTPUT_MODE io
else
set OUTPUT_MODE fmu
fi
2013-12-28 22:52:23 +01:00
fi
if [ $OUTPUT_MODE == io -a $IO_PRESENT != yes ]
2013-12-28 22:52:23 +01:00
then
# Need IO for output but it not present, disable output
set OUTPUT_MODE none
echo "[init] ERROR: PX4IO not found, disabling output"
# Avoid using ttyS0 for MAVLink on FMUv1
if hw_ver compare PX4FMU_V1
then
set FMU_MODE serial
fi
2013-10-19 11:11:15 +02:00
fi
2014-01-06 09:25:39 +01:00
2014-01-11 17:52:29 +01:00
if [ $HIL == yes ]
2014-01-06 09:25:39 +01:00
then
2014-01-11 17:52:29 +01:00
set OUTPUT_MODE hil
2014-01-18 16:47:23 +01:00
if hw_ver compare PX4FMU_V1
then
set FMU_MODE serial
fi
2014-01-11 17:52:29 +01:00
else
# Try to get an USB console if not in HIL mode
nshterm /dev/ttyACM0 &
2014-01-06 09:25:39 +01:00
fi
2013-08-25 19:27:11 +02:00
#
# Start the Commander (needs to be this early for in-air-restarts)
#
commander start
#
# Start primary output
#
2014-01-11 17:52:29 +01:00
set TTYS1_BUSY no
2014-01-18 16:47:23 +01:00
# If OUTPUT_MODE == none then something is wrong with setup and we shouldn't try to enable output
if [ $OUTPUT_MODE != none ]
then
2014-01-18 16:47:23 +01:00
if [ $OUTPUT_MODE == io ]
2014-01-10 13:18:34 +01:00
then
2014-01-18 16:47:23 +01:00
echo "[init] Use PX4IO PWM as primary output"
2014-01-11 17:52:29 +01:00
if px4io start
then
echo "[init] PX4IO started"
sh /etc/init.d/rc.io
else
echo "[init] ERROR: PX4IO start failed"
2014-01-11 18:45:56 +01:00
tone_alarm $TUNE_OUT_ERROR
2014-01-11 17:52:29 +01:00
fi
fi
2014-01-18 16:47:23 +01:00
if [ $OUTPUT_MODE == fmu ]
2014-01-11 17:52:29 +01:00
then
2014-01-18 16:47:23 +01:00
echo "[init] Use FMU PWM as primary output"
2014-01-11 17:52:29 +01:00
if fmu mode_$FMU_MODE
then
echo "[init] FMU mode_$FMU_MODE started"
else
echo "[init] ERROR: FMU mode_$FMU_MODE start failed"
2014-01-11 18:45:56 +01:00
tone_alarm $TUNE_OUT_ERROR
2014-01-11 17:52:29 +01:00
fi
2014-01-18 16:47:23 +01:00
2014-01-11 17:52:29 +01:00
if hw_ver compare PX4FMU_V1
then
if [ $FMU_MODE == pwm -o $FMU_MODE == gpio ]
then
set TTYS1_BUSY yes
fi
if [ $FMU_MODE == pwm_gpio ]
2014-01-11 17:52:29 +01:00
then
set TTYS1_BUSY yes
fi
fi
2014-01-08 20:55:12 +01:00
fi
2014-01-18 16:47:23 +01:00
if [ $OUTPUT_MODE == mkblctrl ]
then
echo "[init] Use MKBLCTRL as primary output"
set MKBLCTRL_ARG ""
if [ $MKBLCTRL_MODE == x ]
then
set MKBLCTRL_ARG "-mkmode x"
fi
if [ $MKBLCTRL_MODE == + ]
then
set MKBLCTRL_ARG "-mkmode +"
fi
if mkblctrl $MKBLCTRL_ARG
then
echo "[init] MKBLCTRL started"
else
echo "[init] ERROR: MKBLCTRL start failed"
tone_alarm $TUNE_OUT_ERROR
fi
fi
if [ $OUTPUT_MODE == hil ]
then
echo "[init] Use HIL as primary output"
if hil mode_port2_pwm8
2014-01-18 16:47:23 +01:00
then
echo "[init] HIL output started"
else
echo "[init] ERROR: HIL output start failed"
tone_alarm $TUNE_OUT_ERROR
fi
fi
#
# Start IO or FMU for RC PPM input if needed
#
if [ $IO_PRESENT == yes ]
then
if [ $OUTPUT_MODE != io ]
then
if px4io start
then
echo "[init] PX4IO started"
sh /etc/init.d/rc.io
else
echo "[init] ERROR: PX4IO start failed"
tone_alarm $TUNE_OUT_ERROR
fi
fi
else
if [ $OUTPUT_MODE != fmu ]
then
if fmu mode_$FMU_MODE
then
echo "[init] FMU mode_$FMU_MODE started"
else
echo "[init] ERROR: FMU mode_$FMU_MODE start failed"
tone_alarm $TUNE_OUT_ERROR
fi
if hw_ver compare PX4FMU_V1
then
if [ $FMU_MODE == pwm -o $FMU_MODE == gpio ]
then
set TTYS1_BUSY yes
fi
if [ $FMU_MODE == pwm_gpio ]
then
set TTYS1_BUSY yes
fi
fi
fi
fi
fi
2014-01-18 16:47:23 +01:00
#
# MAVLink
#
2014-01-11 17:52:29 +01:00
set EXIT_ON_END no
2013-08-25 19:27:11 +02:00
if [ $HIL == yes ]
2013-08-25 19:27:11 +02:00
then
2014-01-18 00:07:25 +01:00
sleep 1
mavlink start -b 230400 -d /dev/ttyACM0
usleep 5000
else
2014-01-11 17:52:29 +01:00
if [ $TTYS1_BUSY == yes ]
2014-01-10 13:18:34 +01:00
then
2014-01-11 17:52:29 +01:00
# Start MAVLink on ttyS0, because FMU ttyS1 pins configured as something else
mavlink start -d /dev/ttyS0
usleep 5000
2014-01-10 22:04:56 +01:00
# Exit from nsh to free port for mavlink
set EXIT_ON_END yes
else
# Start MAVLink on default port: ttyS1
mavlink start
usleep 5000
2014-01-10 13:18:34 +01:00
fi
2013-08-25 19:27:11 +02:00
fi
2014-01-17 23:21:16 +01:00
#
# Start the datamanager
#
dataman start
#
# Start the navigator
#
navigator start
#
# Sensors, Logging, GPS
#
echo "[init] Start sensors"
sh /etc/init.d/rc.sensors
if [ $HIL == no ]
2013-08-25 19:27:11 +02:00
then
echo "[init] Start logging"
sh /etc/init.d/rc.logging
2014-01-08 20:55:12 +01:00
echo "[init] Start GPS"
gps start
2013-08-25 19:27:11 +02:00
fi
2013-09-29 19:00:12 +02:00
#
# Fixed wing setup
#
if [ $VEHICLE_TYPE == fw ]
2013-09-29 19:00:12 +02:00
then
echo "[init] Vehicle type: FIXED WING"
if [ $MIXER == none ]
2014-01-08 20:55:12 +01:00
then
# Set default mixer for fixed wing if not defined
set MIXER FMU_AERT
2014-01-08 20:55:12 +01:00
fi
if [ $MAV_TYPE == none ]
then
# Use MAV_TYPE = 1 (fixed wing) if not defined
set MAV_TYPE 1
fi
param set MAV_TYPE $MAV_TYPE
# Load mixer and configure outputs
sh /etc/init.d/rc.interface
# Start standard fixedwing apps
2014-01-11 00:40:19 +01:00
sh /etc/init.d/rc.fw_apps
2013-09-29 19:00:12 +02:00
fi
2013-09-07 12:17:27 +02:00
#
# Multicopters setup
#
if [ $VEHICLE_TYPE == mc ]
2013-12-28 08:56:58 +01:00
then
echo "[init] Vehicle type: MULTICOPTER"
2013-12-28 08:56:58 +01:00
if [ $MIXER == none ]
2014-01-10 13:18:34 +01:00
then
# Set default mixer for multicopter if not defined
set MIXER quad_x
fi
2013-12-28 14:45:29 +01:00
if [ $MAV_TYPE == none ]
then
# Use MAV_TYPE = 2 (quadcopter) if not defined
set MAV_TYPE 2
# Use mixer to detect vehicle type
if [ $MIXER == FMU_hex_x -o $MIXER == FMU_hex_+ ]
then
set MAV_TYPE 13
fi
if [ $MIXER == FMU_octo_x -o $MIXER == FMU_octo_+ ]
then
set MAV_TYPE 14
fi
if [ $MIXER == FMU_octo_cox ]
then
set MAV_TYPE 14
fi
2014-01-10 13:18:34 +01:00
fi
2013-09-07 12:17:27 +02:00
param set MAV_TYPE $MAV_TYPE
# Load mixer and configure outputs
sh /etc/init.d/rc.interface
# Start standard multicopter apps
sh /etc/init.d/rc.mc_apps
2013-09-07 12:17:27 +02:00
fi
#
# Generic setup (autostart ID not found)
#
if [ $VEHICLE_TYPE == none ]
then
echo "[init] Vehicle type: GENERIC"
# Load mixer and configure outputs
sh /etc/init.d/rc.interface
fi
# Start any custom addons
if [ -f $EXTRAS_FILE ]
2013-08-25 19:27:11 +02:00
then
echo "[init] Starting addons script: $EXTRAS_FILE"
sh $EXTRAS_FILE
else
echo "[init] Addons script not found: $EXTRAS_FILE"
fi
if [ $EXIT_ON_END == yes ]
then
exit
fi
# End of autostart
fi