-
Notifications
You must be signed in to change notification settings - Fork 104
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
Support for Microchip Same51 #397
Conversation
danielinux
commented
Dec 22, 2023
•
edited
Loading
edited
- hal support
- Dual-bank swapping
- update Target.md
- Add build test
.gdbinit
Outdated
@@ -1,6 +1,7 @@ | |||
tar rem:3333 | |||
file wolfboot.elf | |||
add-symbol-file test-app/image.elf | |||
#add-symbol-file test-app/image.elf | |||
add-symbol-file /home/dan/src/wolfboot/IDE/MPLabX/wolfBoot_usbUpdateApp.X/dist/default/production/wolfBoot_usbUpdateApp.X.production.elf |
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.
Consider reverting this.
@@ -0,0 +1,113 @@ | |||
# |
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.
Please consider using IDE/MPLABX
to match our other libraries and Microchip naming.
hal/same51.c
Outdated
void hal_init(void) | ||
{ | ||
|
||
uint32_t reg; |
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.
hal/same51.c:280:14: error: unused variable 'reg' [-Werror=unused-variable]
280 | uint32_t reg;
| ^~~
@@ -0,0 +1,113 @@ | |||
# | |||
# There exist several targets which are by default empty and which can be |
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.
Please add a README.md for how to use these MPLABX projects.
Thanks for the review, @dgarske . I have addressed the comments + re-created the two MPLAB projects + provided extended documentation. This is now ready to consider for merging. |