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.
19 lines
410 B
19 lines
410 B
3 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# board specific sensors init
|
||
|
#------------------------------------------------------------------------------
|
||
|
board_adc start
|
||
|
|
||
|
# Internal ICM-20602
|
||
|
icm20602 -s -b 1 -R 8 start
|
||
|
|
||
|
# Internal SPI bus BMI088 accel & gyro
|
||
|
bmi088 -A -s -b 5 -R 8 start
|
||
|
bmi088 -G -s -b 5 -R 8 start
|
||
|
|
||
|
# Internal ICM-20948 (with magnetometer)
|
||
|
icm20948 -s -b 1 -R 8 -M start
|
||
|
|
||
|
# Interal DPS310 (barometer)
|
||
|
dps310 -s -b 2 start
|