From 127aa52094d5ee7de3e422dc1cbead0799c5b8fe Mon Sep 17 00:00:00 2001 From: J Blackman Date: Tue, 22 Nov 2022 09:19:44 +1100 Subject: [PATCH] FIX: USE_ACCGYRO_BMI270 not enabling SPI (#12010) --- src/main/target/common_post.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/target/common_post.h b/src/main/target/common_post.h index a4ce4dee04..b63e7ea19e 100644 --- a/src/main/target/common_post.h +++ b/src/main/target/common_post.h @@ -292,7 +292,7 @@ #define USE_I2C_GYRO #endif -#if defined(USE_GYRO_SPI_ICM20689) || defined(USE_GYRO_SPI_MPU6000) || defined(USE_GYRO_SPI_MPU6500) || defined(USE_GYRO_SPI_MPU9250) || defined(USE_GYRO_L3GD20) || defined(USE_GYRO_SPI_ICM42605) || defined(USE_GYRO_SPI_ICM42688P) +#if defined(USE_GYRO_SPI_ICM20689) || defined(USE_GYRO_SPI_MPU6000) || defined(USE_GYRO_SPI_MPU6500) || defined(USE_GYRO_SPI_MPU9250) || defined(USE_GYRO_L3GD20) || defined(USE_GYRO_SPI_ICM42605) || defined(USE_GYRO_SPI_ICM42688P) || defined(USE_ACCGYRO_BMI270) #define USE_SPI_GYRO #endif