aboutsummaryrefslogtreecommitdiff
path: root/ROMFS/scripts/rc.sensors
blob: 42c2f52e94e5c99a0acc1f7f7d5a946cfe96fd36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!nsh
#
# Standard startup script for PX4FMU onboard sensor drivers.
#

#
# Start sensor drivers here.
#

ms5611 start
adc start

if mpu6000 start
then
	echo "using MPU6000 and HMC5883L"
	hmc5883 start
else
	echo "using L3GD20 and LSM303D"
	l3gd20 start
	lsm303 start
fi

#
# Start the sensor collection task.
# IMPORTANT: this also loads param offsets
# ALWAYS start this task before the
# preflight_check.
#
sensors start

#
# Check sensors - run AFTER 'sensors start'
#
preflight_check