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

Commit 50e2af8

Browse files
committed
Fix for issue 34. Thanks mmccartn!
1 parent e2ec849 commit 50e2af8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/SparkFun_Ublox_Arduino_Library.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -631,8 +631,8 @@ void SFE_UBLOX_GPS::processUBXpacket(ubxPacket *msg)
631631
else if (msg->id == UBX_NAV_HPPOSLLH && msg->len == 36)
632632
{
633633
timeOfWeek = extractLong(4);
634-
highResLatitude = extractLong(8);
635-
highResLongitude = extractLong(12);
634+
highResLongitude = extractLong(8);
635+
highResLatitude = extractLong(12);
636636
elipsoid = extractLong(16);
637637
meanSeaLevel = extractLong(20);
638638
geoidSeparation = extractLong(24);

0 commit comments

Comments
 (0)