Skip to content

Commit 55e25e9

Browse files
authored
Update storage_settings.c
default documented imu.acceleration_threshold is 250. The installed threshold is 2500. Reducing to 250 as documented. Related to issue #1905
1 parent 4d457a1 commit 55e25e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/pbio/sys/storage_settings.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ void pbsys_storage_settings_set_defaults(pbsys_storage_settings_t *settings) {
3030
#endif
3131
#if PBIO_CONFIG_IMU
3232
settings->gyro_stationary_threshold = 3.0f;
33-
settings->accel_stationary_threshold = 2500.0f;
33+
settings->accel_stationary_threshold = 250.0f;
3434
settings->heading_correction = 360.0f;
3535
#endif // PBIO_CONFIG_IMU
3636
}

0 commit comments

Comments
 (0)