Skip to main content

gnss_protos/gps/
errors.rs

1#[derive(Debug)]
2pub enum GpsError {
3    /// Not a valid GPS preamble
4    InvalidPreamble,
5
6    /// Frame Type is either invalid or not supported
7    UnknownFrameType,
8
9    /// Size is too small to encode a correct data frame
10    WouldNotFit,
11}