mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
- add new parameter `IMU_GYRO_FFT_EN` to start - add 75% overlap in buffer to increase FFT update rate - space out FFT calls (no more than 1 per cycle) - increase `IMU_GYRO_FFT_MIN` default - decrease main stack usage
13 lines
451 B
Plaintext
13 lines
451 B
Plaintext
uint64 timestamp # time since system start (microseconds)
|
|
uint64 timestamp_sample
|
|
|
|
uint32 device_id # unique device ID for the sensor that does not change between power cycles
|
|
|
|
float32 dt # delta time between samples (microseconds)
|
|
|
|
float32 resolution_hz
|
|
|
|
float32[2] peak_frequency_x # x axis peak frequencies
|
|
float32[2] peak_frequency_y # y axis peak frequencies
|
|
float32[2] peak_frequency_z # z axis peak frequencies
|