We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 228df1f commit 764e59dCopy full SHA for 764e59d
src/rotools/xsens/core/interface.py
@@ -432,7 +432,7 @@ def _get_header(data):
432
return None
433
id_str = common.byte_to_str(data[0:6], 6)
434
sample_counter = common.byte_to_uint32(data[6:10])
435
- datagram_counter = struct.unpack("!B", data[10])
+ datagram_counter = data[10]
436
item_number = common.byte_to_uint8(data[11])
437
time_code = common.byte_to_uint32(data[12:16])
438
character_id = common.byte_to_uint8(data[16])
0 commit comments