aboutsummaryrefslogblamecommitdiff
path: root/ROMFS/px4fmu_test/init.d/rcS
blob: d8ed71f121c36489bf6ea73a6f03135f2af89d5e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



                                         






                                             























                                                                      
#!nsh
#
# PX4FMU startup script for test hackery.
#

if sercon
then
	echo "[init] USB interface connected"

	# Try to get an USB console
	nshterm /dev/ttyACM0 &
fi

#
# Try to mount the microSD card.
#
echo "[init] looking for microSD..."
if mount -t vfat /dev/mmcsd0 /fs/microsd
then
	echo "[init] card mounted at /fs/microsd"
	# Start playing the startup tune
	tone_alarm start
else
	echo "[init] no microSD card found"
	# Play SOS
	tone_alarm error
fi

#
# The presence of this file suggests we're running a mount stress test
#
if [ -f /fs/microsd/mount_test_cmds ]
then
	tests mount
fi