aboutsummaryrefslogtreecommitdiff
path: root/ROMFS/px4fmu_common/init.d/rc.logging
blob: a14eb5247a13f678e4eb10f7684f781bf3c565bf (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 40 -a -b 3 -t
	else
		echo "Start sdlog2 at 200Hz"
		sdlog2 start -r 200 -a -b 22 -t
	fi
fi