We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If the SBUS(2) Signal is broken (wire broken, disconnected or receiver unpowered) the SBUS_Ready() function would return true forever.
There should be a reset of sbus_ready and telemetry_ready.
The Functions will be false until a new SBUS(2) Frame is received
The text was updated successfully, but these errors were encountered:
same for SBUS2_Ready()
Sorry, something went wrong.
done
issue reopen because:
SBUS2_Ready() also reset SBUS_Ready() -> this should be handled somehow
an always resetting isn't a good solution sometimes you want to trigger on SBUS_Ready at different lines of code, but reset it on an special line
so there should be a SBUS_Ready(bool reset) to decide if you want to reset or not
new functions:
SBUS_Ready(bool reset) and SBUS2_Ready(bool reset) -> true = reset / false = not reset use false on your own risk
SBUS_Ready() and SBUS2_Ready() do reset the Flag on every call
Have to test it
No branches or pull requests
If the SBUS(2) Signal is broken (wire broken, disconnected or receiver unpowered) the SBUS_Ready() function would return true forever.
There should be a reset of sbus_ready and telemetry_ready.
The Functions will be false until a new SBUS(2) Frame is received
The text was updated successfully, but these errors were encountered: