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

[Camera] Fix a synchronization bug in example #667

Merged
merged 2 commits into from
Apr 26, 2023
Merged

[Camera] Fix a synchronization bug in example #667

merged 2 commits into from
Apr 26, 2023

Commits on Apr 22, 2023

  1. Fix a synchronization bug

    Fixes a synchronization bug. Return if there's no timeout OR if there's no sync byte received.
    The previous version needed both to be true at the same time to return without sending a
    frame, which meant that a frame was sent if there was a timeout even if no sync byte had been
    received. That, in turn, caused random problems for the Processing sketch on the other end.
    alrvid authored Apr 22, 2023
    Configuration menu
    Copy the full SHA
    3be7107 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2023

  1. Add comments to explain timeout functionality

    The timeout functionality has changed, and it needs to be explained.
    Timeouts because of lost sync bytes should be done on the 
    opposite end if needed. Otherwise, the two sides get out of sync
    every now and then.
    alrvid authored Apr 23, 2023
    Configuration menu
    Copy the full SHA
    f899032 View commit details
    Browse the repository at this point in the history