-
Notifications
You must be signed in to change notification settings - Fork 28
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
STM32U5 #82
STM32U5 #82
Conversation
ignored_devices = \ | ||
[ | ||
"STM32U59", | ||
"STM32U5A", | ||
] | ||
|
||
def ignoreDevice(device_id: str) -> bool: | ||
for ignore in ignored_devices: | ||
if device_id.startswith(ignore): | ||
return True | ||
return False |
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.
Not sure if that is the best way to ignore some devices (here: STM32U5{95, 99, A5, A9}) that are not published (yet) and thus are missing datasheet and relevant information.
I my opinion I it not useful to generate device files for this devices so we should somehow ignore them.
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.
Meh, doesn't look like we have a choice if the documents are not there. We could guess the memory layout, but then it'll just be a problem later.
Looks like ST added yet another type of a completely different DMA implementation ... |
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.
Thanks!
Yes. I ignored DMA completely for now in order to get STM32U5 support merged soon and not to create another PR that will get marked as stale in a few weeks. |
No description provided.