Skip to content
This repository was archived by the owner on Jan 28, 2021. It is now read-only.

Adding support for u-blox generation 7 NAV-PVT will allow current exa… #154

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/SparkFun_Ublox_Arduino_Library.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,7 @@ void SFE_UBLOX_GPS::processUBXpacket(ubxPacket *msg)
switch (msg->cls)
{
case UBX_CLASS_NAV:
if (msg->id == UBX_NAV_PVT && msg->len == 92)
if (msg->id == UBX_NAV_PVT && (msg->len == 92 || (msg->len == 84 && getProtocolVersionHigh(defaultMaxWait) == 14)))
{
//Parse various byte fields into global vars
constexpr int startingSpot = 0; //fixed value used in processUBX
Expand Down