aboutsummaryrefslogtreecommitdiff
path: root/ROMFS/px4fmu_common/init.d/rc.logging
blob: 25f31a7e04bd2008c75858b3fb72e525f7d81dff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!nsh
#
# Initialize logging services.
#

if [ -d /fs/microsd ]
then
	if ver hwcmp PX4FMU_V1
	then
		echo "Start sdlog2 at 50Hz"
		sdlog2 start -r 50 -a -b 4 -t
	else
		echo "Start sdlog2 at 200Hz"
		sdlog2 start -r 200 -a -b 22 -t
	fi
fi