Parsing Gyro Data
Last updated
Last updated
Parsing of all gyro formats for Gyroflow is done in the 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 , , 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 , 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.
is a simple CSV-based .gcsv text file
is a binary protobuf description covering all possible camera features
Both formats are parsed by the telemetry-parser
library.