-
Notifications
You must be signed in to change notification settings - Fork 0
Feat/sd #539
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
base: development
Are you sure you want to change the base?
Feat/sd #539
Conversation
…Alternate functions
…per MPU configuration
…egion outside defined ones
…symbol, to ensure initialization order doesn't matter
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.
Pull request overview
Copilot reviewed 5 out of 5 changed files in this pull request and generated 12 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…flow control just in case
jorgesg82
left a comment
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.
Is there a reason to having that hal_gpio_interface.h file? It seems to be an attempt to create a mock to the GPIO module, but I don't get why it is here. If you are not using it and it is only a remaining of some merge, please delete it for this PR
It was a remaining of a merge, now deleted.
Implement Sd module using the new compile-infrastructure. Full documentation in the wiki.
It is a ST-LIB_LOW module even though it directly uses the HAL because it isn't actually a direct abstraction over a peripheral, but an implementation on top of it (the SDMMC peripheral is quite agnostic about what you do with it). Also, it would be great to implement an SDMMC module in HALAL, and refactor the Sd module to use that at some point in the future.
The module only allows for IDMA double-buffering mode, since it is the only mode we have a need for.