Skip to content

Commit

Permalink
ubx_packets/packet.rs: introduce nav end of epoch frame
Browse files Browse the repository at this point in the history
  • Loading branch information
gwbres committed Sep 9, 2022
1 parent 6422f57 commit 84e6a2b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions ublox/src/ubx_packets/packets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,14 @@ struct NavDop {
easting_dop: u16,
}

/// End of Epoch Marker
#[ubx_packet_recv]
#[ubx(class = 0x01, id = 0x61, fixed_payload_len = 4)]
struct NavEoe {
/// GPS time of week for navigation epoch
itow: u32,
}

/// Navigation Solution Information
#[ubx_packet_recv]
#[ubx(class = 1, id = 6, fixed_payload_len = 52)]
Expand Down Expand Up @@ -1979,6 +1987,7 @@ define_recv_packets!(
NavVelNed,
NavTimeUTC,
NavSat,
NavEoe,
NavOdo,
CfgOdo,
MgaAck,
Expand Down

0 comments on commit 84e6a2b

Please sign in to comment.