-
Notifications
You must be signed in to change notification settings - Fork 13.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature] icm42670p driver support #18141
Conversation
src/drivers/imu/invensense/icm42670p/InvenSense_ICM42670P_registers.hpp
Outdated
Show resolved
Hide resolved
Looks good, has this had any testing on hardware? |
Taking a look at the change I see that you have the output data rate at 800 Hz and the filters set. What we've settled on for the the other drivers is to disable all sensor side processing and get full raw data (or as fast as we possibly need it) via the FIFO and then perform all filtering within PX4. This way you can see what's really happening with the system and the filtering is completely user configurable. The other setting that's a bit low is the gyro is the gyro range (250 degrees/second). Would you mind if we sync up the configuration of the icm42670p to be roughly in line with the icm42650 (or similar)? |
now 42670p use 1.6khz data output and 2000 dps config |
No description provided.