Use rc.txt, config.txt, extras.txt files, minor boot messages fixes

This commit is contained in:
Anton Babushkin
2014-01-10 23:14:29 +01:00
parent 6e60984556
commit f3a3d62cf9
3 changed files with 251 additions and 229 deletions
+5 -5
View File
@@ -1,6 +1,6 @@
#!nsh #!nsh
# #
# Script to load fixedwing mixer and set rate/disarmed/min/max values for PWM output # Script to configure fixedwing control interface
# #
# #
@@ -12,7 +12,7 @@ param set MAV_TYPE 1
# #
# Load mixer # Load mixer
# #
echo "Frame geometry: ${FRAME_GEOMETRY}" echo "[init] Frame geometry: $FRAME_GEOMETRY"
set MIXER /etc/mixers/FMU_${FRAME_GEOMETRY}.mix set MIXER /etc/mixers/FMU_$FRAME_GEOMETRY.mix
echo "Loading mixer: ${MIXER}" echo "[init] Loading mixer: $MIXER"
mixer load /dev/pwm_output ${MIXER} mixer load /dev/pwm_output $MIXER
+8 -4
View File
@@ -1,6 +1,6 @@
#!nsh #!nsh
# #
# Script to load multicopter mixer and set rate/disarmed/min/max values for PWM output # Script to configure multicopter control interface
# #
if [ $FRAME_GEOMETRY == quad_x -o $FRAME_GEOMETRY == quad_+ ] if [ $FRAME_GEOMETRY == quad_x -o $FRAME_GEOMETRY == quad_+ ]
@@ -27,9 +27,9 @@ fi
# #
# Load mixer # Load mixer
# #
echo "Frame geometry: $FRAME_GEOMETRY" echo "[init] Frame geometry: $FRAME_GEOMETRY"
set MIXER /etc/mixers/FMU_${FRAME_GEOMETRY}.mix set MIXER /etc/mixers/FMU_$FRAME_GEOMETRY.mix
echo "Loading mixer: $MIXER" echo "[init] Loading mixer: $MIXER"
mixer load /dev/pwm_output $MIXER mixer load /dev/pwm_output $MIXER
if [ $OUTPUT_MODE == fmu_pwm -o $OUTPUT_MODE == io_pwm ] if [ $OUTPUT_MODE == fmu_pwm -o $OUTPUT_MODE == io_pwm ]
@@ -39,6 +39,7 @@ then
# #
if [ $PWM_RATE != none ] if [ $PWM_RATE != none ]
then then
echo "[init] Set PWM rate: $PWM_RATE"
pwm rate -c $OUTPUTS -r $PWM_RATE pwm rate -c $OUTPUTS -r $PWM_RATE
fi fi
@@ -47,14 +48,17 @@ then
# #
if [ $PWM_DISARMED != none ] if [ $PWM_DISARMED != none ]
then then
echo "[init] Set PWM disarmed: $PWM_DISARMED"
pwm disarmed -c $OUTPUTS -p $PWM_DISARMED pwm disarmed -c $OUTPUTS -p $PWM_DISARMED
fi fi
if [ $PWM_MIN != none ] if [ $PWM_MIN != none ]
then then
echo "[init] Set PWM min: $PWM_MIN"
pwm min -c $OUTPUTS -p $PWM_MIN pwm min -c $OUTPUTS -p $PWM_MIN
fi fi
if [ $PWM_MAX != none ] if [ $PWM_MAX != none ]
then then
echo "[init] Set PWM max: $PWM_MAX"
pwm max -c $OUTPUTS -p $PWM_MAX pwm max -c $OUTPUTS -p $PWM_MAX
fi fi
fi fi
+71 -53
View File
@@ -8,7 +8,10 @@
# #
set MODE autostart set MODE autostart
set logfile /fs/microsd/bootlog.txt set LOG_FILE /fs/microsd/bootlog.txt
set RC_FILE /fs/microsd/etc/rc.txt
set CONFIG_FILE /fs/microsd/etc/config.txt
set EXTRAS_FILE /fs/microsd/etc/extras.txt
# #
# Try to mount the microSD card. # Try to mount the microSD card.
@@ -25,35 +28,17 @@ else
tone_alarm error tone_alarm error
fi fi
#
# Set default values here, can be overriden in rc.txt from SD card
#
set HIL no
set VEHICLE_TYPE none
set FRAME_GEOMETRY none
set OUTPUT_MODE none
set VEHICLE_TYPE none
set PWM_RATE none
set PWM_DISARMED none
set PWM_MIN none
set PWM_MAX none
# #
# Look for an init script on the microSD card. # Look for an init script on the microSD card.
# Disable autostart if the script found.
# #
# To prevent automatic startup in the current flight mode, if [ -f $RC_FILE ]
# the script should set MODE to some other value.
#
if [ -f /fs/microsd/etc/rc ]
then then
echo "[init] reading /fs/microsd/etc/rc" echo "[init] Executing init script: $RC_FILE"
sh /fs/microsd/etc/rc sh $RC_FILE
fi set MODE custom
# Also consider rc.txt files else
if [ -f /fs/microsd/etc/rc.txt ] echo "[init] Init script not found: $RC_FILE"
then
echo "[init] reading /fs/microsd/etc/rc.txt"
sh /fs/microsd/etc/rc.txt
fi fi
# if this is an APM build then there will be a rc.APM script # if this is an APM build then there will be a rc.APM script
@@ -72,15 +57,7 @@ fi
if [ $MODE == autostart ] if [ $MODE == autostart ]
then then
# echo "[init] AUTOSTART mode"
# Start CDC/ACM serial driver
#
sercon
#
# Start the ORB (first app to start)
#
uorb start
# #
# Load parameters # Load parameters
@@ -96,6 +73,16 @@ then
fi fi
fi fi
#
# Start CDC/ACM serial driver
#
sercon
#
# Start the ORB (first app to start)
#
uorb start
# #
# Start system state indicator # Start system state indicator
# #
@@ -114,36 +101,36 @@ then
# #
if [ -f /etc/extras/px4io-v2_default.bin ] if [ -f /etc/extras/px4io-v2_default.bin ]
then then
set io_file /etc/extras/px4io-v2_default.bin set IO_FILE /etc/extras/px4io-v2_default.bin
else else
set io_file /etc/extras/px4io-v1_default.bin set IO_FILE /etc/extras/px4io-v1_default.bin
fi fi
set IO_PRESENT no set IO_PRESENT no
if px4io checkcrc $io_file if px4io checkcrc $IO_FILE
then then
echo "[init] PX4IO CRC OK" echo "[init] PX4IO CRC OK"
echo "PX4IO CRC OK" >> $logfile echo "PX4IO CRC OK" >> $LOG_FILE
set IO_PRESENT yes set IO_PRESENT yes
else else
echo "[init] PX4IO CRC failure" echo "[init] PX4IO CRC failure"
echo "PX4IO CRC failure" >> $logfile echo "PX4IO CRC failure" >> $LOG_FILE
tone_alarm MBABGP tone_alarm MBABGP
if px4io forceupdate 14662 $io_file if px4io forceupdate 14662 $IO_FILE
then then
usleep 500000 usleep 500000
if px4io start if px4io start
then then
echo "[init] PX4IO restart OK" echo "[init] PX4IO restart OK"
echo "PX4IO restart OK" >> $logfile echo "PX4IO restart OK" >> $LOG_FILE
tone_alarm MSPAA tone_alarm MSPAA
set IO_PRESENT yes set IO_PRESENT yes
else else
echo "[init] PX4IO restart failed" echo "[init] PX4IO restart failed"
echo "PX4IO restart failed" >> $logfile echo "PX4IO restart failed" >> $LOG_FILE
if hw_ver compare PX4FMU_V2 if hw_ver compare PX4FMU_V2
then then
tone_alarm MNGGG tone_alarm MNGGG
@@ -153,7 +140,7 @@ then
fi fi
else else
echo "[init] PX4IO update failed" echo "[init] PX4IO update failed"
echo "PX4IO update failed" >> $logfile echo "PX4IO update failed" >> $LOG_FILE
if hw_ver compare PX4FMU_V2 if hw_ver compare PX4FMU_V2
then then
tone_alarm MNGGG tone_alarm MNGGG
@@ -162,10 +149,19 @@ then
fi fi
# #
# Set default output if it was not defined in rc.txt # Set default values
#
set HIL no
set VEHICLE_TYPE none
set FRAME_GEOMETRY none
set PWM_RATE none
set PWM_DISARMED none
set PWM_MIN none
set PWM_MAX none
#
# Set default output
# #
if [ $OUTPUT_MODE == none ]
then
if [ $IO_PRESENT == yes ] if [ $IO_PRESENT == yes ]
then then
# If PX4IO present, use it as primary PWM output by default # If PX4IO present, use it as primary PWM output by default
@@ -174,7 +170,6 @@ then
# Else use PX4FMU PWM output # Else use PX4FMU PWM output
set OUTPUT_MODE fmu_pwm set OUTPUT_MODE fmu_pwm
fi fi
fi
set EXIT_ON_END no set EXIT_ON_END no
@@ -193,8 +188,17 @@ then
# #
sh /etc/init.d/rc.autostart sh /etc/init.d/rc.autostart
if [ $MODE == autostart ] #
# Override parameters from user configuration file
#
if [ -f $CONFIG_FILE ]
then then
echo "[init] Reading config: $CONFIG_FILE"
sh $CONFIG_FILE
else
echo "[init] Config file not found: $CONFIG_FILE"
fi
if [ $HIL == yes ] if [ $HIL == yes ]
then then
set OUTPUT_MODE hil set OUTPUT_MODE hil
@@ -329,6 +333,12 @@ then
then then
echo "[init] Vehicle type: FIXED WING" echo "[init] Vehicle type: FIXED WING"
if [ $FRAME_GEOMETRY == none ]
then
# Set default frame geometry for fixed wing
set FRAME_GEOMETRY AERT
fi
# Load mixer and configure outputs # Load mixer and configure outputs
sh /etc/init.d/rc.fw_interface sh /etc/init.d/rc.fw_interface
@@ -343,6 +353,12 @@ then
then then
echo "[init] Vehicle type: MULTICOPTER" echo "[init] Vehicle type: MULTICOPTER"
if [ $FRAME_GEOMETRY == none ]
then
# Set default frame geometry for multicopter
set FRAME_GEOMETRY quad_x
fi
# Load mixer and configure outputs # Load mixer and configure outputs
sh /etc/init.d/rc.mc_interface sh /etc/init.d/rc.mc_interface
@@ -360,12 +376,14 @@ then
attitude_estimator_ekf start attitude_estimator_ekf start
position_estimator_inav start position_estimator_inav start
fi fi
fi
# Start any custom extensions # Start any custom addons
if [ -f /fs/microsd/etc/rc.local ] if [ -f $EXTRAS_FILE ]
then then
sh /fs/microsd/etc/rc.local echo "[init] Starting addons script: $EXTRAS_FILE"
sh $EXTRAS_FILE
else
echo "[init] Addons script not found: $EXTRAS_FILE"
fi fi
if [ $EXIT_ON_END == yes ] if [ $EXIT_ON_END == yes ]