Skip to content

Commit

Permalink
Adjust VQF params more
Browse files Browse the repository at this point in the history
  • Loading branch information
kounocom committed Oct 11, 2024
1 parent afb4d32 commit 2f2c248
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/sensors/softfusion/drivers/bmi270.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ struct BMI270 {
.biasSigmaInit = 0.5f,
.biasClip = 1.0f,
.restThGyr = 0.5f,
.restThAcc = 0.392f,
.restThAcc = 0.196f,
};

struct MotionlessCalibrationData {
Expand Down
2 changes: 1 addition & 1 deletion src/sensors/softfusion/drivers/icm42688.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ struct ICM42688 {
.biasSigmaInit = 0.5f,
.biasClip = 1.0f,
.restThGyr = 0.5f,
.restThAcc = 0.392f,
.restThAcc = 0.196f,
};

I2CImpl i2c;
Expand Down
2 changes: 1 addition & 1 deletion src/sensors/softfusion/drivers/icm45686.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ struct ICM45686 {
.biasSigmaInit = 0.3f,
.biasClip = 0.6f,
.restThGyr = 0.3f,
.restThAcc = 0.0196f,
.restThAcc = 0.0098f,
};

I2CImpl i2c;
Expand Down
2 changes: 1 addition & 1 deletion src/sensors/softfusion/drivers/lsm6ds3.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ struct LSM6DS3 {
.biasSigmaInit = 10.0f,
.biasClip = 20.0f,
.restThGyr = 10.0f,
.restThAcc = 0.784f,
.restThAcc = 0.392f,
};

I2CImpl i2c;
Expand Down
2 changes: 1 addition & 1 deletion src/sensors/softfusion/drivers/lsm6ds3trc.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ struct LSM6DS3TRC {
.biasSigmaInit = 3.0f,
.biasClip = 6.0f,
.restThGyr = 3.0f,
.restThAcc = 0.784f,
.restThAcc = 0.392f,
};

I2CImpl i2c;
Expand Down
2 changes: 1 addition & 1 deletion src/sensors/softfusion/drivers/lsm6dso.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ struct LSM6DSO : LSM6DSOutputHandler<I2CImpl> {
.biasSigmaInit = 1.0f,
.biasClip = 2.0f,
.restThGyr = 1.0f,
.restThAcc = 0.392f,
.restThAcc = 0.192f,
};

using LSM6DSOutputHandler<I2CImpl>::i2c;
Expand Down
2 changes: 1 addition & 1 deletion src/sensors/softfusion/drivers/lsm6dsr.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ struct LSM6DSR : LSM6DSOutputHandler<I2CImpl> {
.biasSigmaInit = 1.0f,
.biasClip = 2.0f,
.restThGyr = 1.0f,
.restThAcc = 0.392f,
.restThAcc = 0.192f,
};

using LSM6DSOutputHandler<I2CImpl>::i2c;
Expand Down
2 changes: 1 addition & 1 deletion src/sensors/softfusion/drivers/lsm6dsv.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ struct LSM6DSV : LSM6DSOutputHandler<I2CImpl> {
.biasSigmaInit = 1.0f,
.biasClip = 2.0f,
.restThGyr = 1.0f,
.restThAcc = 0.392f,
.restThAcc = 0.192f,
};

using LSM6DSOutputHandler<I2CImpl>::i2c;
Expand Down
2 changes: 1 addition & 1 deletion src/sensors/softfusion/drivers/mpu6050.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ struct MPU6050 {
.biasSigmaInit = 20.0f,
.biasClip = 40.0f,
.restThGyr = 20.0f,
.restThAcc = 1.568f,
.restThAcc = 0.784f,
};

I2CImpl i2c;
Expand Down

0 comments on commit 2f2c248

Please sign in to comment.