ardupilot/Tools/FilterTestTool
Pierre Kancir 020bd0ba1e Tools: fix exec permission 2022-06-08 08:16:42 +09:00
..
BiquadFilter.py Tools: add IMU filter test tool 2019-06-19 09:14:30 +10:00
FilterTest.py Tools: fix exec permission 2022-06-08 08:16:42 +09:00
Readme.md Tools: FilterTestTool - add missing information 2019-07-19 09:21:15 +09:00
run_filter_test.py Tools: update for changed INS_NOTCH parameter name 2022-04-16 08:14:06 +10:00

Readme.md

ArduPilot IMU Filter Test Tool

Warning: always check the onboard FFT to setup filters, this tool only simulates the effects of filtering.

This is a tool to simulate IMU filtering on a raw IMU log. This requires activating the RAW_IMU bit on the LOG_BITMASK parameter. Currently only supports the primary IMU and does not use batch sampling.

To run it:

 python run_filter_test.py

This will open a file chooser dialog to select a log file.

Log file can also be specified from command line

 python run_filter_test.py logfile.bin

To choose a smaller section of the log begin and/or end time can be specified in seconds. E.g. to open only the log section between 60 and 120 seconds:

 python run_filter_test.py logfile.bin -b 60 -e 120

More info here:

https://discuss.ardupilot.org/t/imu-filter-tool/43633