mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 01:12:11 +00:00
20 lines
403 B
Bash
20 lines
403 B
Bash
#!/bin/sh
|
|
#
|
|
# mRo Control Zero specific board sensors init
|
|
#------------------------------------------------------------------------------
|
|
|
|
board_adc start
|
|
|
|
# Internal ICM-20602
|
|
icm20602 -s -R 8 start
|
|
|
|
# Internal SPI bus BMI088 accel & gyro
|
|
bmi088 -A -R 8 -s start
|
|
bmi088 -G -R 8 -s start
|
|
|
|
# Internal ICM-20948 (with magnetometer)
|
|
icm20948 -s -R 8 -M start
|
|
|
|
# Interal DPS310 (barometer)
|
|
dps310 -s start
|