Files
PX4-Autopilot/docs/en/msg_docs/SensorGyroFft.md
PX4BuildBot be784e21f7 docs: auto-sync metadata [skip ci]
Co-Authored-By: PX4 BuildBot <bot@px4.io>
2026-05-27 02:57:43 +00:00

50 lines
2.9 KiB
Markdown

---
pageClass: is-wide-page
---
# SensorGyroFft (UORB message)
**TOPICS:** sensor_gyro_fft
## Fields
| Name | Type | Unit [Frame] | Range/Enum | Description |
| ----------------------------------------------------------- | ------------ | ------------ | ---------- | ------------------------------------------------------------------------- |
| <a id="fld_timestamp"></a>timestamp | `uint64` | | | time since system start (microseconds) |
| <a id="fld_timestamp_sample"></a>timestamp_sample | `uint64` | | |
| <a id="fld_device_id"></a>device_id | `uint32` | | | unique device ID for the sensor that does not change between power cycles |
| <a id="fld_sensor_sample_rate_hz"></a>sensor_sample_rate_hz | `float32` | | |
| <a id="fld_resolution_hz"></a>resolution_hz | `float32` | | |
| <a id="fld_peak_frequencies_x"></a>peak_frequencies_x | `float32[3]` | | | x axis peak frequencies |
| <a id="fld_peak_frequencies_y"></a>peak_frequencies_y | `float32[3]` | | | y axis peak frequencies |
| <a id="fld_peak_frequencies_z"></a>peak_frequencies_z | `float32[3]` | | | z axis peak frequencies |
| <a id="fld_peak_snr_x"></a>peak_snr_x | `float32[3]` | | | x axis peak SNR |
| <a id="fld_peak_snr_y"></a>peak_snr_y | `float32[3]` | | | y axis peak SNR |
| <a id="fld_peak_snr_z"></a>peak_snr_z | `float32[3]` | | | z axis peak SNR |
## Source Message
[Source file (GitHub)](https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGyroFft.msg)
::: details Click here to see original file
```c
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 sensor_sample_rate_hz
float32 resolution_hz
float32[3] peak_frequencies_x # x axis peak frequencies
float32[3] peak_frequencies_y # y axis peak frequencies
float32[3] peak_frequencies_z # z axis peak frequencies
float32[3] peak_snr_x # x axis peak SNR
float32[3] peak_snr_y # y axis peak SNR
float32[3] peak_snr_z # z axis peak SNR
```
:::