-
Notifications
You must be signed in to change notification settings - Fork 61
Add support for all remaining AES modes #22
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
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
I'm working on some changes that require `Transfer::new` to be opened up to the rest of the crate, so I think it makes sense to not require weird PAC types when calling it.
The problem with these constructors is that they're not flexible enough. In general, peripheral APIs might want to present DMA transfers to the user in a different way than they work in hardware. For example, the AES peripheral supports only transfers of 32-bit words, but might want to present an API that works with byte slices (I'm currently working on this). Another example would be SPI, which might want to hide two simultaneous DMA transfers (for read and write) behind a single transfer struct. This commit doesn't make these use cases possible yet, as some modifications to the unsafe constructor are still required. But it paves the way, by exposing that constructor to the peripheral APIs. Please note that none of this exposes any unsafety to the users. They will still use the same (safe) peripheral APIs to access DMA.
The new trait, `Buffer`, provides everything the DMA code needs from the buffer, without requiring implementers to be able to return a slice. This makes the trait more flexible, as it can be implemented for a larger variety of types, without requiring any complex transmuting.
The type parameter names were wrong, as they were in a different order than was used everywhere else in the code. Please note that this didn't cause any incorrect behavior, as just the names were wrong and nothing else.
This should be more natural than operating with `u32` words.
I'm working on adding support for more modes besides CTR, so the current examples need to be renamed to qualify them.
I'm about to add support for more AES modes, so the old name is too specific.
I'm about to add support for more AES modes, so the old name was too specific.
The new name is consistent with `AES::enable`. The old name was consistent once, but the method it was consistent with has since been renamend.
Thanks so much for adding the AES support and for cleaning up the PWM source code and examples! |
No problem. Thank my client, they paid for it :-) Thank you for creating |
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.
This pull request is based on #19. I recommend reviewing/merging that one first, before taking a look at this one.
cc @lthiery