You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
While testing the I2c (Wire, wire1 and wire2) found that the bosch api libraries for the BMI270 and BMM150 result in a Bus Fault Error. However when testing with a MPU9250 it works on with out issue under Zephyr.
NOTE: if I run the same skech/library(sparkfun) under Mbed it runs without issue.
Target board + cli verbose compilation output Full verbose compilation output, ideally with arduino-cli invocation or from IDE 2.3.3+
Issues without the full verbose output will be discarded as invalid.
void setup()
{
// Start serial
Serial.begin(115200);
Serial.println("BMI270 Example 1 - Basic Readings I2C");
// Initialize the I2C library
Wire.begin();
Wire.setClock(400000);
// Check if sensor is connected and initialize
// Address is optional (defaults to 0x68)
while(imu.beginI2C(BMI2_I2C_PRIM_ADDR, Wire) != BMI2_OK)
{
// Not connected, inform user
Serial.println("Error: BMI270 not connected, check wiring and I2C address!");
// Wait a bit to see if connection is established
delay(1000);
}
Serial.println("BMI270 connected!");
}
void loop()
{
// Get measurements from the sensor. This must be called before accessing
// the sensor data, otherwise it will never update
imu.getSensorData();
Describe the bug
While testing the I2c (Wire, wire1 and wire2) found that the bosch api libraries for the BMI270 and BMM150 result in a Bus Fault Error. However when testing with a MPU9250 it works on with out issue under Zephyr.
NOTE: if I run the same skech/library(sparkfun) under Mbed it runs without issue.
Target board + cli verbose compilation output
Full verbose compilation output, ideally with
arduino-cli
invocation or from IDE 2.3.3+Issues without the full verbose output will be discarded as invalid.
Output of Serial Monitor
#include <Wire.h>
#include "SparkFun_BMI270_Arduino_Library.h"
// Create a new sensor object
BMI270 imu;
// I2C address selection
uint8_t i2cAddress = BMI2_I2C_PRIM_ADDR; // 0x68
//uint8_t i2cAddress = BMI2_I2C_SEC_ADDR; // 0x69
void setup()
{
// Start serial
Serial.begin(115200);
Serial.println("BMI270 Example 1 - Basic Readings I2C");
}
void loop()
{
// Get measurements from the sensor. This must be called before accessing
// the sensor data, otherwise it will never update
imu.getSensorData();
}
The text was updated successfully, but these errors were encountered: