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
{{ message }}
This repository has been archived by the owner on Dec 24, 2023. It is now read-only.
Currently it is possible doe to serial bus issues that messages may start being read out of sync (i.e. FF 66 01 FF FF which should be 66 01 FF FF FF).
Anything the reads from the serial port directly should instead read through poll() which will look for the required header and read ahead to the end of message marker (FF FF FF), since all the serial reading will be done in a single buffer this should eliminate this issue.
(of course the first message to fail will still fail, but subsequent messages should not)
The text was updated successfully, but these errors were encountered:
Currently it is possible doe to serial bus issues that messages may start being read out of sync (i.e.
FF 66 01 FF FF
which should be66 01 FF FF FF
).Anything the reads from the serial port directly should instead read through
poll()
which will look for the required header and read ahead to the end of message marker (FF FF FF
), since all the serial reading will be done in a single buffer this should eliminate this issue.(of course the first message to fail will still fail, but subsequent messages should not)
The text was updated successfully, but these errors were encountered: