Skip to content

Commit

Permalink
Per page 99 of https://www.u-blox.com/docs/UBX-21019746: byte 3 of the
Browse files Browse the repository at this point in the history
UBX-NAV-HPPOSLLH message contains a bitfield called 'flags' which
contains a single flag named 'invalidLlh'
  • Loading branch information
dgburr committed Dec 11, 2024
1 parent 4bec8f7 commit 5500544
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ubxtranslator/predefined.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@
]),
core.Message(0x14, 'HPPOSLLH', [
core.Field('version', 'U1'),
core.PadByte(repeat=2),
core.PadByte(repeat=1),
core.BitField('flags', 'X1', [
core.Flag('invalidLlh', 0, 1),
]),
core.Field('iTOW', 'U4'),
core.Field('lon', 'I4'),
core.Field('lat', 'I4'),
Expand Down

0 comments on commit 5500544

Please sign in to comment.