Skip to content

Commit

Permalink
Added NMEA ZDA messages support.
Browse files Browse the repository at this point in the history
  • Loading branch information
adamshapiro0 committed Dec 14, 2024
1 parent 21bedb4 commit ec72695
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions python/fusion_engine_client/messages/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ class NmeaMessageType(IntEnum):
GSV = 4
RMC = 5
VTG = 6
ZDA = 7

P1CALSTATUS = 1000
P1MSG = 1001
Expand Down
3 changes: 3 additions & 0 deletions src/point_one/fusion_engine/messages/configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2019,6 +2019,7 @@ enum class NmeaMessageType : uint16_t {
GSV = 4,
RMC = 5,
VTG = 6,
ZDA = 7,
/** @} */

/**
Expand Down Expand Up @@ -2067,6 +2068,8 @@ P1_CONSTEXPR_FUNC const char* to_string(NmeaMessageType value) {
return "RMC";
case NmeaMessageType::VTG:
return "VTG";
case NmeaMessageType::ZDA:
return "ZDA";
case NmeaMessageType::P1CALSTATUS:
return "P1CALSTATUS";
case NmeaMessageType::P1MSG:
Expand Down

0 comments on commit ec72695

Please sign in to comment.