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
346 B
18 lines
346 B
6 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# Omnibus F4SD specific board sensors init
|
||
|
#------------------------------------------------------------------------------
|
||
|
|
||
|
if ! mpu6000 -R 12 -s start
|
||
|
then
|
||
|
# some boards such as the Hobbywing XRotor F4 G2 use the ICM-20602
|
||
|
mpu6000 -R 12 -T 20602 -s start
|
||
|
fi
|
||
|
|
||
|
# Possible external compasses
|
||
|
hmc5883 -X start
|
||
|
|
||
|
bmp280 start
|
||
|
|
||
|
adc start
|