You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
462 B
18 lines
462 B
#!/bin/sh
|
|
#
|
|
# UVify UVF4 specific board extras init
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
|
# IFO
|
|
if param compare SYS_AUTOSTART 4071
|
|
then
|
|
# IFO has only external i2c barometer.
|
|
# It does not start EKF2 in the beginning which is strange behaviour. but 3 seconds hack.
|
|
# We intentionally put this initialization to here for delayed initialization.
|
|
sleep 4
|
|
if ! ms5611 -T 5607 -X start
|
|
then
|
|
ms5611 -X start
|
|
fi
|
|
fi
|
|
|