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
345 B
18 lines
345 B
#!/bin/sh
|
|
#
|
|
# ARKFPV specific board sensors init
|
|
#------------------------------------------------------------------------------
|
|
|
|
board_adc start
|
|
|
|
if ver hwtypecmp ARKFPV000
|
|
then
|
|
# Internal SPI bus IIM42653
|
|
iim42653 -R 14 -s -b 1 start
|
|
fi
|
|
|
|
# Internal magnetometer on I2C
|
|
iis2mdc -R 0 -I -b 4 start
|
|
|
|
# Internal Baro on I2C
|
|
bmp388 -I -b 2 start
|
|
|