-
Notifications
You must be signed in to change notification settings - Fork 156
No unions #309
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
Closed
Closed
No unions #309
Conversation
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
This is a very basic first cut at expanding registers with derivedFrom. This commit requires rust-embedded/svd#50
This removes any observable side effect of the --nightly switch by removing the use of unions and the untagged_unions feature gate. Unions are replaced with accessor functions that return the appropriate register block reference. Here's a playground link that shows that the pointer calculation looks reasonable: https://play.integer32.com/?version=stable&mode=debug&edition=2018&gist=cd56444abc03e6781e526bbddc7082bc This commit is a breaking change. This is based on this WIP PR branch: rust-embedded#256 It implements the easiest standalone portion of this issue: rust-embedded#218 and also makes accessing the unions "safe" too, which is requested here: rust-embedded#230
…to register-derived-from
Register derived from (resolve merge conflicts)
r? @Emilgardis (rust_highfive has picked a reviewer for you, use r? to override) |
* Introduce a logging system. svd2rust now uses env_logger instead of printing directly to stderr. env_logger is currently configured to log messages >= info to stderr. * Fix import of logging macro. * Remove some noise in the generated code Struct initialisations don't need to repeat field names if they're equal to a local variable. Signed-off-by: Daniel Egger <[email protected]>
…vd2rust into register-derived-from
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
Implemented by @wez this PR replace untagged unions with functions for access to alternate registers.
Depends on #308 .
Closes #230, #218, stm32-rs/stm32-rs#149 .
@adamgreig , @therealprof , @Emilgardis , @ryankurte