sys/stdio: add optional function stdio_available#17446
Merged
aabadie merged 3 commits intoRIOT-OS:masterfrom Jan 3, 2022
Merged
sys/stdio: add optional function stdio_available#17446aabadie merged 3 commits intoRIOT-OS:masterfrom
aabadie merged 3 commits intoRIOT-OS:masterfrom
Conversation
fe8dec1 to
27da62f
Compare
3 tasks
aabadie
reviewed
Jan 3, 2022
A couple of `stdio` backend implementations allow to check for the number of available bytes for reading before the blocking `stdio_read` is called. This helps to implement non-blocking functionalities while waiting for `stdin`.
27da62f to
af621ec
Compare
Contributor
Author
|
@aabadie Thanks for reviewing and merging. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Contribution description
This PR provides the definition of an additional
stdiofunction to check how many bytes are available for reading.A number of
stdiobackend implementations allow to check the number of bytes available for reading before calling the blockingstdio_read. This helps to implement non-blocking functionalities while waiting forstdin.This PR provides the implementation for
Testing procedure
Green CI.
Issues/PRs references
Follow-up of PR #17335
Required for PR #17447