🖇
Parsing Gyro Data
Parsing of all gyro formats for Gyroflow is done in the telemetry-parser library. It was created specifically for Gyroflow and aims to implement all possible gyro data parsers natively.
This means that the code is pure Rust, without any external dependencies, any SDKs or anything else.
This allows it to be extremely portable with the ability to be built as a python module, WASM module, for all mobile platforms and basically everywhere else Rust is supported.
It also doesn't need filesystem access, so the source data bytes can be provided from anywhere.
telemetry-parser provides a CLI tool called gyro2bb, which parses the gyro data and outputs a Betaflight blackbox compatible
.csv
file.It can also dump (print) all parsed metadata to the terminal.
Gyroflow team has designed two formats in an attempt to standardize writing gyro data by the cameras.
- 1.
- 2.
Both formats are parsed by the
telemetry-parser
library.Last modified 1mo ago