Skip to content

Commit

Permalink
Merge pull request #38 from gwbres/nav_eoe
Browse files Browse the repository at this point in the history
ubx_packets/packet.rs: introduce nav end of epoch frame
  • Loading branch information
lkolbly authored Sep 11, 2022
2 parents 49cead1 + 84e6a2b commit f09f8a2
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 @@ -252,6 +252,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 @@ -2777,6 +2785,7 @@ define_recv_packets!(
NavVelNed,
NavTimeUTC,
NavSat,
NavEoe,
NavOdo,
CfgOdo,
MgaAck,
Expand Down

0 comments on commit f09f8a2

Please sign in to comment.