uf-crsf 0.5.0

A `no_std` Rust library for parsing the TBS Crossfire protocol, designed for embedded environments
Documentation
1
2
3
4
// per specification, max packet size with all framing
pub const CRSF_MAX_PACKET_SIZE: usize = 64;
// header (1) + packet type (1) + CRC (1) + Payload (min 1)
pub const CRSF_MIN_PACKET_SIZE: usize = 4;