Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix message framing (backtracking parser) #225

Merged
merged 4 commits into from Mar 4, 2024

Commits on Feb 27, 2024

  1. Fixed incorrect message framing by using a buffered reader.

    This allows the parser to backtrack in case a STX byte in the middle of a message is mistaken for the start-of-frame (checked via CRC)
    Tiago Marques committed Feb 27, 2024
    Copy the full SHA
    9b440cc View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2024

  1. Replaced buffered_reader::Generic with own buffered reader implemen…

    …tation (`PeekReader`)
    Tiago Marques committed Feb 29, 2024
    Copy the full SHA
    d9f6227 View commit details
    Browse the repository at this point in the history
  2. Removed extraneous buffered-reader dependency

    Tiago Marques committed Feb 29, 2024
    Copy the full SHA
    86dac21 View commit details
    Browse the repository at this point in the history
  3. added documentation to `PeekReader

    Tiago Marques committed Feb 29, 2024
    Copy the full SHA
    4f28f3b View commit details
    Browse the repository at this point in the history