-
Notifications
You must be signed in to change notification settings - Fork 2k
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
sys/stdio: add optional function stdio_available #17446
Merged
Merged
Conversation
This file contains 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
gschorcht
requested review from
aabadie,
bergzand,
cgundogan,
dylad,
jia200x and
leandrolanzieri
as code owners
December 25, 2021 12:39
github-actions
bot
added
Area: build system
Area: Build system
Area: Kconfig
Area: Kconfig integration
Area: sys
Area: System
Area: USB
Area: Universal Serial Bus
labels
Dec 25, 2021
gschorcht
added
CI: ready for build
If set, CI server will compile all applications for all available boards for the labeled PR
Type: new feature
The issue requests / The PR implemements a new feature for RIOT
labels
Dec 25, 2021
gschorcht
force-pushed
the
sys/std_available
branch
from
December 25, 2021 20:18
fe8dec1
to
27da62f
Compare
gschorcht
changed the title
sys/stdio: add optional function stdio_available available
sys/stdio: add optional function stdio_available
Dec 25, 2021
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`.
gschorcht
force-pushed
the
sys/std_available
branch
from
January 3, 2022 15:14
27da62f
to
af621ec
Compare
aabadie
approved these changes
Jan 3, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK
@aabadie Thanks for reviewing and merging. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Area: build system
Area: Build system
Area: Kconfig
Area: Kconfig integration
Area: sys
Area: System
Area: USB
Area: Universal Serial Bus
CI: ready for build
If set, CI server will compile all applications for all available boards for the labeled PR
Type: new feature
The issue requests / The PR implemements a new feature for RIOT
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
stdio
function to check how many bytes are available for reading.A number of
stdio
backend 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