Skip to content

Commit 239ae75

Browse files
committed
[nRF52] place holder for Bosch BHI260AP IMU sensor
1 parent e37f6ae commit 239ae75

File tree

2 files changed

+38
-4
lines changed

2 files changed

+38
-4
lines changed

software/firmware/source/SoftRF/src/platform/nRF52.cpp

+36-4
Original file line numberDiff line numberDiff line change
@@ -325,9 +325,11 @@ ui_settings_t *ui;
325325
#include <MPU9250.h>
326326
#include <ICM_20948.h>
327327
#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;
331333

332334
static bool nRF52_has_imu = false;
333335
static unsigned long IMU_Time_Marker = 0;
@@ -897,6 +899,10 @@ static void nRF52_setup()
897899
if (nRF52_has_imu == false) {
898900
Wire.beginTransmission(ICM20948_ADDRESS);
899901
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+
}
900906
}
901907
}
902908
#endif /* EXCLUDE_IMU */
@@ -1277,6 +1283,19 @@ static void nRF52_setup()
12771283
hw_info.imu = IMU_MPU9250;
12781284
hw_info.mag = MAG_AK8963;
12791285
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();
12801299
} else {
12811300
bool ad0 = (ICM20948_ADDRESS == 0x69) ? true : false;
12821301

@@ -1515,7 +1534,8 @@ static void nRF52_post_init()
15151534
Serial.println(F("External components:"));
15161535
Serial.print(F("IMU : "));
15171536
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"));
15191539
} else {
15201540
Serial.print(F("IMU : "));
15211541
Serial.println(hw_info.imu == IMU_BHI260AP ? F("PASS") : F("FAIL"));
@@ -1834,6 +1854,13 @@ static void nRF52_loop()
18341854
IMU_g = sqrtf(a_x*a_x + a_y*a_y + a_z*a_z);
18351855
IMU_Time_Marker = millis();
18361856
}
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+
}
18371864
#endif /* EXCLUDE_IMU */
18381865

18391866
if (nRF52_board == NRF52_SEEED_T1000E &&
@@ -1881,6 +1908,11 @@ static void nRF52_fini(int reason)
18811908
if (hw_info.imu == ACC_QMA6100P) {
18821909
imu_3.enableAccel(false);
18831910
}
1911+
1912+
if (hw_info.imu == IMU_BHI260AP) {
1913+
/* TBD */
1914+
// imu_4.deinit();
1915+
}
18841916
#endif /* EXCLUDE_IMU */
18851917

18861918
switch (nRF52_board)

software/firmware/source/SoftRF/src/platform/nRF52.h

+2
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,8 @@ struct rst_info {
127127
#define MPU9250_ADDRESS (0x68)
128128
#define ICM20948_ADDRESS (0x68)
129129
#define BME280_ADDRESS (0x77)
130+
#define BHI260AP_ADDRESS_L (0x28)
131+
#define BHI260AP_ADDRESS_H (0x29)
130132

131133
#if defined(ARDUINO_ARCH_MBED) || defined(ARDUINO_ARCH_ZEPHYR)
132134
#define PCF8563_SLAVE_ADDRESS (0x51)

0 commit comments

Comments
 (0)