-
Notifications
You must be signed in to change notification settings - Fork 202
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
Async API #635
Merged
Merged
Async API #635
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
jbeaurivage
force-pushed
the
async
branch
3 times, most recently
from
October 25, 2022 17:00
44e6126
to
f6c11cf
Compare
jbeaurivage
force-pushed
the
async
branch
5 times, most recently
from
November 3, 2022 02:59
bf2dd1b
to
e576e7f
Compare
jbeaurivage
force-pushed
the
async
branch
2 times, most recently
from
November 13, 2022 20:06
8b5faa7
to
6bf9569
Compare
jbeaurivage
force-pushed
the
async
branch
3 times, most recently
from
October 26, 2023 14:12
6d1d419
to
82d24dc
Compare
jbeaurivage
force-pushed
the
async
branch
4 times, most recently
from
January 24, 2024 15:58
a14220c
to
299e6a9
Compare
sajattack
reviewed
May 22, 2024
jbeaurivage
added a commit
to jbeaurivage/atsamd
that referenced
this pull request
Nov 15, 2024
Adds support for async APIs for the following peripherals: * SPI * I2C * UART * DMAC * EIC (external GPIO interrupts) * Timer/counters BREAKING CHANGE: Removes support for wakers in sync `dmac::Transfers`.
jbeaurivage
added a commit
to jbeaurivage/atsamd
that referenced
this pull request
Nov 15, 2024
jbeaurivage
added a commit
to jbeaurivage/atsamd
that referenced
this pull request
Nov 15, 2024
Adds support for async APIs for the following peripherals: * SPI * I2C * UART * DMAC * EIC (external GPIO interrupts) * Timer/counters BREAKING CHANGE: Removes support for wakers in sync `dmac::Transfers`.
jbeaurivage
added a commit
to jbeaurivage/atsamd
that referenced
this pull request
Nov 15, 2024
jbeaurivage
added a commit
to jbeaurivage/atsamd
that referenced
this pull request
Nov 21, 2024
…erlying peripheral (atsamd-rs#635)
jbeaurivage
added a commit
to jbeaurivage/atsamd
that referenced
this pull request
Nov 21, 2024
jbeaurivage
added a commit
to jbeaurivage/atsamd
that referenced
this pull request
Nov 21, 2024
Adds support for async APIs for the following peripherals: * SPI * I2C * UART * DMAC * EIC (external GPIO interrupts) * Timer/counters BREAKING CHANGE: Removes support for wakers in sync `dmac::Transfers`.
jbeaurivage
added a commit
to jbeaurivage/atsamd
that referenced
this pull request
Nov 21, 2024
jbeaurivage
added a commit
to jbeaurivage/atsamd
that referenced
this pull request
Nov 21, 2024
…erlying peripheral (atsamd-rs#635)
jbeaurivage
added a commit
to jbeaurivage/atsamd
that referenced
this pull request
Nov 21, 2024
jbeaurivage
added a commit
to jbeaurivage/atsamd
that referenced
this pull request
Nov 21, 2024
Adds support for async APIs for the following peripherals: * SPI * I2C * UART * DMAC * EIC (external GPIO interrupts) * Timer/counters BREAKING CHANGE: Removes support for wakers in sync `dmac::Transfers`.
jbeaurivage
added a commit
to jbeaurivage/atsamd
that referenced
this pull request
Nov 21, 2024
…erlying peripheral (atsamd-rs#635)
Adds support for async APIs for the following peripherals: * SPI * I2C * UART * DMAC * EIC (external GPIO interrupts) * Timer/counters BREAKING CHANGE: Removes support for wakers in sync `dmac::Transfers`.
sajattack
pushed a commit
that referenced
this pull request
Nov 25, 2024
sajattack
pushed a commit
that referenced
this pull request
Nov 25, 2024
Adds support for async APIs for the following peripherals: * SPI * I2C * UART * DMAC * EIC (external GPIO interrupts) * Timer/counters BREAKING CHANGE: Removes support for wakers in sync `dmac::Transfers`.
Merged
2 tasks
🎉 |
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.
Provide APIs to use some peripherals using
async/await
.Design summary can be seen here: https://gist.github.com/jbeaurivage/16955c5f002de4c09fdd6c26a30ef59e
HAL features
One new feature is added to the HAL:
async
MSRV
This PR bumps the HAL MSRV to rustc 1.75. However everything compiles on stable.
Peripherals implemented
Todo
Examples
Some examples are provided for
feather_m0
(and a few formetro_m4
). Some more examples will be added in time, perhaps in a follow-up PR.Breaking changes
EIC
drivers have a slightly new API.dmac::Transfer
s.