-
Notifications
You must be signed in to change notification settings - Fork 200
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
Open
jbeaurivage
wants to merge
4
commits into
atsamd-rs:master
Choose a base branch
from
jbeaurivage:async
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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
force-pushed
the
async
branch
2 times, most recently
from
October 18, 2024 20:36
b4e896f
to
7bd6007
Compare
9 tasks
I tested it on metro m4. It works great.
|
sajattack
reviewed
Nov 7, 2024
sajattack
reviewed
Nov 7, 2024
sajattack
reviewed
Nov 7, 2024
sajattack
reviewed
Nov 7, 2024
sajattack
reviewed
Nov 7, 2024
jbeaurivage
force-pushed
the
async
branch
5 times, most recently
from
November 9, 2024 16:33
dbd878a
to
877f7d7
Compare
Branch is rebased on top of #780. |
jbeaurivage
force-pushed
the
async
branch
6 times, most recently
from
November 12, 2024 16:17
2581fe8
to
e103033
Compare
jbeaurivage
added a commit
to jbeaurivage/atsamd
that referenced
this pull request
Nov 13, 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`.
…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`.
Note to reviewers: please use "Rebase and merge" to preserve the git history. |
3 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
.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.