@@ -325,9 +325,11 @@ ui_settings_t *ui;
325
325
#include < MPU9250.h>
326
326
#include < ICM_20948.h>
327
327
#include < QMA6100P.h>
328
- MPU9250 imu_1;
329
- ICM_20948_I2C imu_2;
330
- QMA6100P imu_3;
328
+ #include < SensorBHI260AP.hpp>
329
+ MPU9250 imu_1;
330
+ ICM_20948_I2C imu_2;
331
+ QMA6100P imu_3;
332
+ SensorBHI260AP imu_4;
331
333
332
334
static bool nRF52_has_imu = false ;
333
335
static unsigned long IMU_Time_Marker = 0 ;
@@ -897,6 +899,10 @@ static void nRF52_setup()
897
899
if (nRF52_has_imu == false ) {
898
900
Wire.beginTransmission (ICM20948_ADDRESS);
899
901
nRF52_has_imu = (Wire.endTransmission () == 0 );
902
+ if (nRF52_has_imu == false ) {
903
+ Wire.beginTransmission (BHI260AP_ADDRESS_L);
904
+ nRF52_has_imu = (Wire.endTransmission () == 0 );
905
+ }
900
906
}
901
907
}
902
908
#endif /* EXCLUDE_IMU */
@@ -1277,6 +1283,19 @@ static void nRF52_setup()
1277
1283
hw_info.imu = IMU_MPU9250;
1278
1284
hw_info.mag = MAG_AK8963;
1279
1285
IMU_Time_Marker = millis ();
1286
+ } else if (imu_4.init (Wire,
1287
+ SOC_GPIO_PIN_SDA, SOC_GPIO_PIN_SCL,
1288
+ BHI260AP_ADDRESS_L)) {
1289
+ float sample_rate = 100.0 ; /* Read out hintr_ctrl measured at 100Hz */
1290
+ uint32_t report_latency_ms = 0 ; /* Report immediately */
1291
+
1292
+ // Enable acceleration
1293
+ imu_4.configure (SENSOR_ID_ACC_PASS, sample_rate, report_latency_ms);
1294
+ // Enable gyroscope
1295
+ imu_4.configure (SENSOR_ID_GYRO_PASS, sample_rate, report_latency_ms);
1296
+
1297
+ hw_info.imu = IMU_BHI260AP;
1298
+ IMU_Time_Marker = millis ();
1280
1299
} else {
1281
1300
bool ad0 = (ICM20948_ADDRESS == 0x69 ) ? true : false ;
1282
1301
@@ -1515,7 +1534,8 @@ static void nRF52_post_init()
1515
1534
Serial.println (F (" External components:" ));
1516
1535
Serial.print (F (" IMU : " ));
1517
1536
Serial.println (hw_info.imu == IMU_MPU9250 ||
1518
- hw_info.imu == IMU_ICM20948 ? F (" PASS" ) : F (" N/A" ));
1537
+ hw_info.imu == IMU_ICM20948 ||
1538
+ hw_info.imu == IMU_BHI260AP ? F (" PASS" ) : F (" N/A" ));
1519
1539
} else {
1520
1540
Serial.print (F (" IMU : " ));
1521
1541
Serial.println (hw_info.imu == IMU_BHI260AP ? F (" PASS" ) : F (" FAIL" ));
@@ -1834,6 +1854,13 @@ static void nRF52_loop()
1834
1854
IMU_g = sqrtf (a_x*a_x + a_y*a_y + a_z*a_z);
1835
1855
IMU_Time_Marker = millis ();
1836
1856
}
1857
+
1858
+ if (hw_info.imu == IMU_BHI260AP &&
1859
+ (millis () - IMU_Time_Marker) > IMU_UPDATE_INTERVAL) {
1860
+ // Update sensor fifo
1861
+ imu_4.update ();
1862
+ IMU_Time_Marker = millis ();
1863
+ }
1837
1864
#endif /* EXCLUDE_IMU */
1838
1865
1839
1866
if (nRF52_board == NRF52_SEEED_T1000E &&
@@ -1881,6 +1908,11 @@ static void nRF52_fini(int reason)
1881
1908
if (hw_info.imu == ACC_QMA6100P) {
1882
1909
imu_3.enableAccel (false );
1883
1910
}
1911
+
1912
+ if (hw_info.imu == IMU_BHI260AP) {
1913
+ /* TBD */
1914
+ // imu_4.deinit();
1915
+ }
1884
1916
#endif /* EXCLUDE_IMU */
1885
1917
1886
1918
switch (nRF52_board)
0 commit comments