Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/F_BMI160.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
#define BMI160_ERR_REG 0x02
#define BMI160_CHIP_ID 0x00
#define BMI160_CHIP_ID_DEFAULT_VALUE 0xD1
#define BMI160_DEFAULT_ADDRESS 0x69
#define BMI160_DEFAULT_ADDRESS 0x68

class BMI160 : public IMUBase {
public:
Expand Down
2 changes: 1 addition & 1 deletion src/F_IMU_Hybrid.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ IMU_HYBRID<IMUType, MAGType>::~IMU_HYBRID() {

template <typename IMUType, typename MAGType>
int IMU_HYBRID<IMUType, MAGType>::init(calData cal, uint8_t address) {
int e = IMU->init(cal);
int e = IMU->init(cal, address);
if (e) return e;
e = MAG->init(cal);
if (e) return -2;
Expand Down