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.
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# SP Racing H7 EXTREME specific board sensors init
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
board_adc start
|
|
|
|
|
|
|
|
# Internal SPI bus ICM-20602
|
|
|
|
#mpu6000 -s -b 2 -R 11 -T 20602 start # SPI 2
|
|
|
|
#mpu6000 -s -b 3 -R 10 -T 20602 start # SPI 3
|
|
|
|
icm20602 -s -b 2 -R 5 start # SPI 2
|
|
|
|
icm20602 -s -b 3 -R 4 start # SPI 3
|
|
|
|
|
|
|
|
# Internal I2C bus
|
|
|
|
bmp388 -I start
|
|
|
|
|
|
|
|
|
|
|
|
|