Closed chutsu closed 3 years ago
Ah, good catch. Actually it's more subtle than that as it depends whether it's a Delay, Clock period, or Offset value. All three can go at that eighth spot (and I realize that the command line documentation is not clear on that) but they behave differently:
I'll have to add a bit of logic here. Thanks for spotting this.
The Xsens IMU allows one to offset the synchronization setting with a negative offset (doc here):
The
struct.pack()
format code indata = b''.join(struct.pack('!BBBBHHHH', *sync_setting)
of:in Line 342 of
mtdevice.py
. Should the last element not beh
and notH
to allow for a negative number? (format code doc here)