mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 09:22:18 +00:00
16 lines
309 B
Bash
16 lines
309 B
Bash
#!/bin/sh
|
|
#
|
|
# KakuteF7 specific board sensors init
|
|
#------------------------------------------------------------------------------
|
|
|
|
board_adc start
|
|
|
|
# The default IMU is an ICM20689, but there might also be an MPU6000
|
|
if ! mpu6000 -R 6 -s start
|
|
then
|
|
icm20689 -R 6 -s start
|
|
fi
|
|
|
|
# Onboard Baro
|
|
bmp280 -X start
|