Skip to content

Commit 133edd3

Browse files
authored
Update imu.h
1 parent c3b5c2e commit 133edd3

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/madflight/imu/imu.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ configures gyro and accel with 1000 Hz sample rate (with on sensor 200 Hz low pa
1919
ICM-4xxxx sensors
2020
===================================
2121
Currently only ICM45686 is supported.
22-
This is a 6 axis sensor, with maximum sample rates of 6.4khz.
22+
This is a 6 axis sensor, with maximum sample rates of 6.4khz, max gyro range 4000dps, max accelerometer range 32G
2323
Limitations:
2424
- The underlying driver lib supports only one sensor instance
2525
- only via SPI + interupt; I2C can be added using the same driver lib
@@ -60,12 +60,10 @@ This is a 6 axis sensor, with maximum sample rates of 6.4khz.
6060

6161
//default settings
6262
#ifndef IMU_GYRO_DPS
63-
// ICM45686 supports 4000dps as well
6463
#define IMU_GYRO_DPS 2000 //Full scale gyro range in deg/sec. Most IMUs support 250,500,1000,2000. Can use any value here, driver will pick next greater setting.
6564
#endif
6665
#ifndef IMU_ACCEL_G
67-
// ICM45686 supports 32g as well
68-
#define IMU_ACCEL_G 16 //Full scale gyro accelerometer in G's. Most IMUs support 2,4,8,16. Can use any value here, driver will pick next greater setting.
66+
#define IMU_ACCEL_G 16 //Full scale accelerometer range in G's. Most IMUs support 2,4,8,16. Can use any value here, driver will pick next greater setting.
6967
#endif
7068

7169
//handle rotation for different mounting positions

0 commit comments

Comments
 (0)