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
Copy file name to clipboardExpand all lines: docs/source/components/nodes/imu.rst
+43-5Lines changed: 43 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,6 @@ Limitations
48
48
###########
49
49
50
50
- For BNO086, gyroscope frequency above 400Hz can produce some jitter from time to time due to sensor HW limitation.
51
-
- **Maximum frequencies**: 500 Hz raw accelerometer, 1000 Hz raw gyroscope values individually, and 500Hz combined (synced) output. You can obtain the combined synced 500Hz output with :code:`imu.enableIMUSensor([dai.IMUSensor.ACCELEROMETER_RAW, dai.IMUSensor.GYROSCOPE_RAW], 500)`.
52
51
53
52
IMU sensor frequencies
54
53
######################
@@ -58,14 +57,53 @@ for BNO086, maximum frequency for gyroscope is 1000Hz, but up to 400Hz is stable
58
57
59
58
**BNO086:**
60
59
61
-
- Accelerometer: 100Hz, 200Hz, 400Hz
62
-
- Gyroscope: 125Hz, 250Hz, 400Hz
60
+
Note that BNO IMU "rounds up" the input frequency to the next available frequency. For example, if you set the frequency to 101 it will round it to 200Hz.
Note that BMI279 "rounds down" the input frequency to the next available frequency. For example, if you set the frequency to 99 it will round it to 50Hz.
103
+
Additionally, the current max frequency of ~250 Hz is set when the input is >400Hz.
0 commit comments