You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/u-blox_GNSS.h
+15
Original file line number
Diff line number
Diff line change
@@ -989,12 +989,15 @@ class DevUBLOXGNSS
989
989
// Functions to extract signed and unsigned 8/16/32-bit data from a ubxPacket
990
990
// From v2.0: These are public. The user can call these to extract data from custom packets
991
991
uint64_textractLongLong(ubxPacket *msg, uint16_t spotToStart); // Combine eight bytes from payload into uint64_t
992
+
int64_textractSignedLongLong(ubxPacket *msg, uint16_t spotToStart); // Combine eight bytes from payload into uint64_t
992
993
uint32_textractLong(ubxPacket *msg, uint16_t spotToStart); // Combine four bytes from payload into long
993
994
int32_textractSignedLong(ubxPacket *msg, uint16_t spotToStart); // Combine four bytes from payload into signed long (avoiding any ambiguity caused by casting)
994
995
uint16_textractInt(ubxPacket *msg, uint16_t spotToStart); // Combine two bytes from payload into int
0 commit comments