px4-firmware/ROMFS/px4fmu_common/init.d/rcS

619 lines
10 KiB
Plaintext
Raw Normal View History

#!nsh
#
# PX4FMU startup script.
#
# Default to auto-start mode.
#
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 13:45:56 -04:00
set TUNE_OUT_ERROR ML<<CP4CP4CP4CP4CP4
#
# Try to mount the microSD card.
#
2014-01-10 17:04:56 -04:00
echo "[init] Looking for microSD..."
if mount -t vfat /dev/mmcsd0 /fs/microsd
then
set LOG_FILE /fs/microsd/bootlog.txt
echo "[init] microSD mounted: /fs/microsd"
# Start playing the startup tune
tone_alarm start
else
set LOG_FILE /dev/null
2014-01-10 17:04:56 -04: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 08:17:43 -04: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 05:01:03 -03: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 08:18:34 -04:00
echo "[init] Running rc.APM"
2013-01-20 17:15:13 -04:00
# if APM startup is successful then nsh will exit
sh /etc/init.d/rc.APM
fi
2013-07-18 05:01:03 -03:00
if [ $MODE == autostart ]
then
echo "[init] AUTOSTART mode"
2013-08-25 14:27:11 -03:00
#
# Start CDC/ACM serial driver
2013-08-25 14:27:11 -03:00
#
sercon
2014-06-01 05:59:11 -03:00
2014-08-26 05:13:52 -03:00
# Try to get an USB console
nshterm /dev/ttyACM0 &
2013-08-25 14:27:11 -03:00
#
# Start the ORB (first app to start)
#
uorb start
2014-06-01 05:59:11 -03:00
2013-08-25 14:27:11 -03:00
#
# Load parameters
2013-08-25 14:27:11 -03:00
#
set PARAM_FILE /fs/microsd/params
if mtd start
then
set PARAM_FILE /fs/mtd_params
fi
2014-06-01 05:59:11 -03:00
param select $PARAM_FILE
if param load
then
echo "[param] Loaded: $PARAM_FILE"
else
echo "[param] FAILED loading $PARAM_FILE"
if param reset
then
fi
2014-01-12 12:43:33 -04:00
fi
2014-06-01 05:59:11 -03:00
2013-08-25 14:27:11 -03:00
#
# Start system state indicator
#
if rgbled start
2013-08-17 10:48:13 -03:00
then
2013-08-25 14:27:11 -03:00
else
if blinkm start
then
blinkm systemstate
fi
2013-08-17 10:48:13 -03:00
fi
if pca8574 start
then
fi
2014-06-01 05:59:11 -03:00
#
# Set default values
#
set HIL no
set VEHICLE_TYPE none
set MIXER none
2014-01-11 12:52:29 -04:00
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 12:52:29 -04:00
set MKBLCTRL_MODE none
set FMU_MODE pwm
set MAVLINK_FLAGS default
set EXIT_ON_END no
set MAV_TYPE none
set LOAD_DEFAULT_APPS yes
set GPS yes
set GPS_FAKE no
2014-08-26 05:13:52 -03:00
set FAILSAFE none
2014-06-01 05:59:11 -03:00
#
2014-01-10 17:04:56 -04:00
# Set DO_AUTOCONFIG flag to use it in AUTOSTART scripts
#
2014-01-10 08:18:34 -04:00
if param compare SYS_AUTOCONFIG 1
2013-10-19 04:45:34 -03:00
then
2014-11-15 11:19:51 -04:00
# Wipe out params
param reset_nostart
2014-01-10 08:18:34 -04:00
set DO_AUTOCONFIG yes
else
set DO_AUTOCONFIG no
fi
2014-06-01 05:59:11 -03:00
#
# Set USE_IO flag
#
if param compare SYS_USE_IO 1
then
set USE_IO yes
else
set USE_IO no
fi
2014-06-01 05:59:11 -03:00
2013-08-25 14:27:11 -03:00
#
2014-01-08 15:55:12 -04:00
# Set parameters and env variables for selected AUTOSTART
2013-08-25 14:27:11 -03:00
#
if param compare SYS_AUTOSTART 0
then
echo "[init] No autostart"
else
sh /etc/init.d/rc.autostart
fi
2013-08-25 14:27:11 -03:00
#
# Override parameters from user configuration file
2013-08-25 14:27:11 -03:00
#
if [ -f $CONFIG_FILE ]
then
echo "[init] Config: $CONFIG_FILE"
sh $CONFIG_FILE
else
echo "[init] Config 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-06-01 05:59:11 -03:00
2014-01-11 12:52:29 -04:00
set IO_PRESENT no
2014-06-01 05:59:11 -03:00
2014-01-11 12:52:29 -04:00
if [ $USE_IO == yes ]
then
2014-01-11 12:52:29 -04:00
#
# Check if PX4IO present and update firmware if needed
#
if [ -f /etc/extras/px4io-v2_default.bin ]
then
2014-01-11 12:52:29 -04:00
set IO_FILE /etc/extras/px4io-v2_default.bin
else
set IO_FILE /etc/extras/px4io-v1_default.bin
fi
2014-06-01 05:59:11 -03:00
2014-01-11 12:52:29 -04:00
if px4io checkcrc $IO_FILE
then
echo "PX4IO CRC OK" >> $LOG_FILE
2014-06-01 05:59:11 -03:00
2014-01-11 12:52:29 -04:00
set IO_PRESENT yes
else
2014-01-23 03:43:55 -04:00
echo "PX4IO Trying to update" >> $LOG_FILE
2014-06-01 05:59:11 -03:00
2014-01-11 13:45:56 -04:00
tone_alarm MLL32CP8MB
2014-06-01 05:59:11 -03:00
2014-01-11 12:52:29 -04:00
if px4io forceupdate 14662 $IO_FILE
2013-08-31 06:56:39 -03:00
then
2014-01-11 12:52:29 -04:00
usleep 500000
if px4io checkcrc $IO_FILE
then
echo "PX4IO CRC OK after updating" >> $LOG_FILE
2014-01-11 13:45:56 -04:00
tone_alarm MLL8CDE
2014-06-01 05:59:11 -03:00
2014-01-11 12:52:29 -04:00
set IO_PRESENT yes
else
echo "PX4IO update failed" >> $LOG_FILE
2014-01-23 13:39:32 -04:00
tone_alarm $TUNE_OUT_ERROR
2014-01-11 12:52:29 -04:00
fi
else
2014-01-11 12:52:29 -04:00
echo "PX4IO update failed" >> $LOG_FILE
2014-01-23 13:39:32 -04:00
tone_alarm $TUNE_OUT_ERROR
2013-08-31 06:56:39 -03:00
fi
2014-01-11 12:52:29 -04:00
fi
2014-06-01 05:59:11 -03:00
2014-01-11 12:52:29 -04:00
if [ $IO_PRESENT == no ]
then
2014-01-11 13:45:56 -04:00
echo "[init] ERROR: PX4IO not found"
tone_alarm $TUNE_OUT_ERROR
2013-08-31 06:56:39 -03:00
fi
fi
2014-06-01 05:59:11 -03:00
2013-08-25 14:27:11 -03:00
#
2014-01-11 12:52:29 -04:00
# Set default output if not set
#
if [ $OUTPUT_MODE == none ]
2013-12-28 17:52:23 -04:00
then
if [ $USE_IO == yes ]
2014-01-11 12:52:29 -04:00
then
set OUTPUT_MODE io
else
set OUTPUT_MODE fmu
fi
2013-12-28 17:52:23 -04:00
fi
if [ $OUTPUT_MODE == io -a $IO_PRESENT != yes ]
2013-12-28 17:52:23 -04:00
then
# Need IO for output but it not present, disable output
set OUTPUT_MODE none
echo "[init] ERROR: PX4IO not found, disabling output"
2014-06-01 05:59:11 -03:00
# Avoid using ttyS0 for MAVLink on FMUv1
if ver hwcmp PX4FMU_V1
then
set FMU_MODE serial
fi
2013-10-19 06:11:15 -03:00
fi
2014-01-06 04:25:39 -04:00
if [ $OUTPUT_MODE == ardrone ]
then
set FMU_MODE gpio_serial
fi
2014-01-11 12:52:29 -04:00
if [ $HIL == yes ]
2014-01-06 04:25:39 -04:00
then
2014-01-11 12:52:29 -04:00
set OUTPUT_MODE hil
if ver hwcmp PX4FMU_V1
2014-01-18 11:47:23 -04:00
then
set FMU_MODE serial
fi
2014-01-06 04:25:39 -04:00
fi
2014-11-15 11:19:51 -04:00
# waypoint storage
if dataman start
then
fi
2014-06-30 07:42:26 -03:00
2014-11-15 11:19:51 -04:00
# Needs to be this early for in-air-restarts
commander start
2014-06-01 05:59:11 -03:00
#
# Start primary output
#
2014-01-11 12:52:29 -04:00
set TTYS1_BUSY no
2014-06-01 05:59:11 -03:00
2014-01-18 11:47:23 -04:00
# If OUTPUT_MODE == none then something is wrong with setup and we shouldn't try to enable output
if [ $OUTPUT_MODE != none ]
then
if [ $OUTPUT_MODE == uavcan_esc ]
2014-05-08 09:23:33 -03:00
then
2014-08-23 10:23:59 -03:00
if param compare UAVCAN_ENABLE 0
2014-05-08 09:23:33 -03:00
then
2014-08-23 10:23:59 -03:00
echo "[init] OVERRIDING UAVCAN_ENABLE = 1"
param set UAVCAN_ENABLE 1
2014-05-08 09:23:33 -03:00
fi
fi
if [ $OUTPUT_MODE == io -o $OUTPUT_MODE == uavcan_esc ]
2014-01-10 08:18:34 -04:00
then
2014-01-11 12:52:29 -04: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 13:45:56 -04:00
tone_alarm $TUNE_OUT_ERROR
2014-01-11 12:52:29 -04:00
fi
fi
2014-06-01 05:59:11 -03:00
2014-03-06 18:00:00 -04:00
if [ $OUTPUT_MODE == fmu -o $OUTPUT_MODE == ardrone ]
2014-01-11 12:52:29 -04:00
then
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 13:45:56 -04:00
tone_alarm $TUNE_OUT_ERROR
2014-01-11 12:52:29 -04:00
fi
2014-06-01 05:59:11 -03:00
if ver hwcmp PX4FMU_V1
2014-01-11 12:52:29 -04:00
then
if [ $FMU_MODE == pwm -o $FMU_MODE == gpio ]
then
set TTYS1_BUSY yes
fi
2014-03-06 09:44:10 -04:00
if [ $FMU_MODE == pwm_gpio -o $OUTPUT_MODE == ardrone ]
2014-01-11 12:52:29 -04:00
then
set TTYS1_BUSY yes
fi
fi
2014-01-08 15:55:12 -04:00
fi
2014-06-01 05:59:11 -03:00
2014-01-18 11:47:23 -04:00
if [ $OUTPUT_MODE == mkblctrl ]
then
set MKBLCTRL_ARG ""
if [ $MKBLCTRL_MODE == x ]
then
set MKBLCTRL_ARG "-mkmode x"
fi
if [ $MKBLCTRL_MODE == + ]
then
set MKBLCTRL_ARG "-mkmode +"
fi
2014-06-01 05:59:11 -03:00
2014-01-18 11:47:23 -04:00
if mkblctrl $MKBLCTRL_ARG
then
echo "[init] MKBLCTRL started"
else
echo "[init] ERROR: MKBLCTRL start failed"
tone_alarm $TUNE_OUT_ERROR
fi
2014-06-01 05:59:11 -03:00
fi
2014-06-01 05:59:11 -03:00
2014-01-18 11:47:23 -04:00
if [ $OUTPUT_MODE == hil ]
then
if hil mode_port2_pwm8
2014-01-18 11:47:23 -04:00
then
echo "[init] HIL output started"
else
echo "[init] ERROR: HIL output start failed"
tone_alarm $TUNE_OUT_ERROR
fi
fi
2014-06-01 05:59:11 -03:00
2014-01-18 11:47:23 -04:00
#
# Start IO or FMU for RC PPM input if needed
#
if [ $IO_PRESENT == yes ]
then
if [ $OUTPUT_MODE != io ]
then
if px4io start
then
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 -a $OUTPUT_MODE != ardrone ]
2014-01-18 11:47:23 -04:00
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
2014-06-01 05:59:11 -03:00
if ver hwcmp PX4FMU_V1
2014-01-18 11:47:23 -04:00
then
if [ $FMU_MODE == pwm -o $FMU_MODE == gpio ]
then
set TTYS1_BUSY yes
fi
2014-03-06 09:44:10 -04:00
if [ $FMU_MODE == pwm_gpio -o $OUTPUT_MODE == ardrone ]
2014-01-18 11:47:23 -04:00
then
set TTYS1_BUSY yes
fi
fi
fi
fi
fi
2014-06-01 05:59:11 -03:00
if [ $MAVLINK_FLAGS == default ]
2013-08-25 14:27:11 -03:00
then
# Normal mode, use baudrate 57600 (default) and data rate 1000 bytes/s
if [ $TTYS1_BUSY == yes ]
2014-01-10 08:18:34 -04:00
then
# Start MAVLink on ttyS0, because FMU ttyS1 pins configured as something else
set MAVLINK_FLAGS "-r 1000 -d /dev/ttyS0"
# Exit from nsh to free port for mavlink
set EXIT_ON_END yes
else
# Start MAVLink on default port: ttyS1
set MAVLINK_FLAGS "-r 1000"
2014-01-10 08:18:34 -04:00
fi
2013-08-25 14:27:11 -03:00
fi
mavlink start $MAVLINK_FLAGS
2014-06-01 05:59:11 -03:00
2014-08-23 10:23:59 -03:00
#
# UAVCAN
#
sh /etc/init.d/rc.uavcan
#
# Sensors, Logging, GPS
#
sh /etc/init.d/rc.sensors
sh /etc/init.d/rc.logging
2014-06-01 05:59:11 -03:00
if [ $GPS == yes ]
then
if [ $GPS_FAKE == yes ]
then
echo "[init] Faking GPS"
gps start -f
else
gps start
2014-06-01 05:59:11 -03:00
fi
fi
2014-03-05 05:50:16 -04:00
#
# Start up ARDrone Motor interface
#
if [ $OUTPUT_MODE == ardrone ]
2014-03-05 05:50:16 -04:00
then
ardrone_interface start -d /dev/ttyS1
fi
#
# Fixed wing setup
#
if [ $VEHICLE_TYPE == fw ]
2013-09-29 14:00:12 -03:00
then
echo "[init] Vehicle type: FIXED WING"
2014-06-01 05:59:11 -03:00
if [ $MIXER == none ]
2014-01-08 15:55:12 -04:00
then
# Set default mixer for fixed wing if not defined
set MIXER FMU_AERT
2014-01-08 15:55:12 -04:00
fi
2014-06-01 05:59:11 -03:00
if [ $MAV_TYPE == none ]
then
# Use MAV_TYPE = 1 (fixed wing) if not defined
set MAV_TYPE 1
fi
2014-06-01 05:59:11 -03:00
param set MAV_TYPE $MAV_TYPE
2014-06-01 05:59:11 -03:00
# Load mixer and configure outputs
sh /etc/init.d/rc.interface
2014-06-01 05:59:11 -03:00
# Start standard fixedwing apps
2014-03-15 11:28:37 -03:00
if [ $LOAD_DEFAULT_APPS == yes ]
then
sh /etc/init.d/rc.fw_apps
fi
2013-09-29 14:00:12 -03:00
fi
2013-09-07 07:17:27 -03:00
#
# Multicopters setup
#
if [ $VEHICLE_TYPE == mc ]
2013-12-28 03:56:58 -04:00
then
echo "[init] Vehicle type: MULTICOPTER"
2013-12-28 03:56:58 -04:00
if [ $MIXER == none ]
2014-01-10 08:18:34 -04:00
then
echo "Default mixer for multicopter not defined"
fi
2013-12-28 09:45:29 -04:00
if [ $MAV_TYPE == none ]
then
# Use mixer to detect vehicle type
if [ $MIXER == FMU_quad_x -o $MIXER == FMU_quad_+ ]
then
set MAV_TYPE 2
fi
if [ $MIXER == FMU_quad_w ]
then
set MAV_TYPE 2
fi
2014-02-05 14:03:26 -04:00
if [ $MIXER == FMU_hexa_x -o $MIXER == FMU_hexa_+ ]
2014-02-11 10:35:26 -04:00
then
2014-02-11 03:09:51 -04:00
set MAV_TYPE 13
fi
if [ $MIXER == FMU_hexa_cox ]
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 08:18:34 -04:00
fi
2014-06-01 05:59:11 -03:00
# Still no MAV_TYPE found
if [ $MAV_TYPE == none ]
then
echo "Unknown MAV_TYPE"
else
param set MAV_TYPE $MAV_TYPE
fi
2014-06-01 05:59:11 -03:00
# Load mixer and configure outputs
sh /etc/init.d/rc.interface
2014-06-01 05:59:11 -03:00
# Start standard multicopter apps
2014-03-15 11:28:37 -03:00
if [ $LOAD_DEFAULT_APPS == yes ]
then
sh /etc/init.d/rc.mc_apps
fi
2013-09-07 07:17:27 -03:00
fi
#
# VTOL setup
#
if [ $VEHICLE_TYPE == vtol ]
then
echo "[init] Vehicle type: VTOL"
if [ $MIXER == none ]
then
echo "Default mixer for vtol not defined"
fi
if [ $MAV_TYPE == none ]
then
# Use mixer to detect vehicle type
2014-12-02 06:02:23 -04:00
if [ $MIXER == FMU_caipirinha_vtol ]
then
2014-12-02 06:02:23 -04:00
set MAV_TYPE 19
fi
fi
# Still no MAV_TYPE found
if [ $MAV_TYPE == none ]
then
echo "Unknown MAV_TYPE"
else
param set MAV_TYPE $MAV_TYPE
fi
# Load mixer and configure outputs
sh /etc/init.d/rc.interface
# Start standard vtol apps
if [ $LOAD_DEFAULT_APPS == yes ]
then
sh /etc/init.d/rc.vtol_apps
fi
fi
#
# Start the navigator
#
navigator start
#
# Generic setup (autostart ID not found)
#
if [ $VEHICLE_TYPE == none ]
then
echo "[init] Vehicle type: No autostart ID found"
fi
# Start any custom addons
if [ -f $EXTRAS_FILE ]
2013-08-25 14:27:11 -03:00
then
echo "[init] Starting addons script: $EXTRAS_FILE"
sh $EXTRAS_FILE
else
echo "[init] No addons script: $EXTRAS_FILE"
fi
if [ $EXIT_ON_END == yes ]
then
echo "[init] Exit from nsh"
exit
fi
# End of autostart
fi