File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2660,16 +2660,16 @@ boolean SFE_UBLOX_GPS::getRELPOSNED(uint16_t maxWait)
2660
2660
2661
2661
uint32_t tempAcc;
2662
2662
2663
- tempAcc = extractLong (24 );
2663
+ tempAcc = extractLong (36 );
2664
2664
relPosInfo.accN = tempAcc / 10000.0 ; // Convert 0.1 mm to m
2665
2665
2666
- tempAcc = extractLong (28 );
2666
+ tempAcc = extractLong (40 );
2667
2667
relPosInfo.accE = tempAcc / 10000.0 ; // Convert 0.1 mm to m
2668
2668
2669
- tempAcc = extractLong (32 );
2669
+ tempAcc = extractLong (44 );
2670
2670
relPosInfo.accD = tempAcc / 10000.0 ; // Convert 0.1 mm to m
2671
2671
2672
- uint8_t flags = payloadCfg[36 ];
2672
+ uint8_t flags = payloadCfg[60 ];
2673
2673
2674
2674
relPosInfo.gnssFixOk = flags & (1 << 0 );
2675
2675
relPosInfo.diffSoln = flags & (1 << 1 );
You can’t perform that action at this time.
0 commit comments