gnss-protos 0.0.1

GNSS protos encoder and decoder
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug)]
pub enum GpsError {
    /// Not a valid GPS preamble
    InvalidPreamble,

    /// Frame Type is either invalid or not supported
    UnknownFrameType,

    /// Size is too small to encode a correct data frame
    WouldNotFit,
}