Files
bizhang_-obav/ROMFS/px4fmu_common/init.d/rc.sensors

85 lines
854 B
Plaintext
Raw Normal View History

#!nsh
#
# Standard startup script for PX4FMU onboard sensor drivers.
#
ms5611 start
adc start
if mpu6000 -X start
then
fi
if mpu6000 start
then
fi
if l3gd20 -X start
then
fi
if l3gd20 start
then
fi
# MAG selection
if param compare SENS_EXT_MAG 2
then
if hmc5883 -I start
then
fi
else
# Use only external as primary
if param compare SENS_EXT_MAG 1
then
if hmc5883 -X start
then
fi
else
# auto-detect the primary, prefer external
if hmc5883 start
then
fi
fi
fi
if ver hwcmp PX4FMU_V2
then
if lsm303d -X start
then
fi
if lsm303d start
then
fi
fi
if meas_airspeed start
then
else
if ets_airspeed start
then
else
if ets_airspeed start -b 1
then
fi
fi
fi
# Check for flow sensor
if px4flow start
then
fi
2014-12-14 11:37:12 +01:00
if ll40ls start
then
fi
#
2014-11-15 16:19:51 +01:00
# Start sensors -> preflight_check
#
if sensors start
then
2013-07-18 15:26:14 +02:00
preflight_check &
fi