sbus-rs 0.1.3

A no_std compatible SBUS protocol parser for embedded systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Error types for SBUS operations
#[derive(Debug, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub enum SbusError {
    /// Error reading from the reader
    ReadError,
    /// Invalid header
    InvalidHeader(u8),
    /// Invalid footer
    InvalidFooter(u8),
}