-
Notifications
You must be signed in to change notification settings - Fork 72
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
ATmega4809 scaffold support #62 #63
Conversation
For some reason, CI is failing right now ... I'm not quite sure why, maybe you can take a look and check whether this is also happening for you locally? |
Should I run svd2rust on svd and then copy mod.rs? |
Ah, I see. I think the issue is that you must add a |
Will try to dig into patching. |
Newer versions (built from git) of |
@Rahix |
I just released version 0.2.0 of |
I started with AC. Still not sure what is the logic. @Rahix do we have any guide for this? |
The right version is the patched one so the move was from I'd take a look at the patches in Don't worry about patching everything from the get-go. If all the common patches which apply are included, this is already a pretty good foundation and hopefully enough to make a HAL implementation work. |
Only
|
hmm, I'd create a subdir But it looks like the peripherals differ substantially from the ones we currently have on the other MCUs. So it's probably not directly obvious what needs to be patches unless you want to go through the datasheet line by line ... I'd actually keep patching to a minimun for now, and check back later, while doing the HAL implementation to see where changes are necessary. |
Co-authored-by: Rahix <rahix@rahix.de>
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.
Okay, remaining CI failures are because CI is using an old version of svd2rust
. I'm going to fix that later today, after that this branch should be ready to merge :)
Thanks a lot! |
Scaffold for #62