-
Notifications
You must be signed in to change notification settings - Fork 143
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
Are there plans to support stm32h7 devices? #378
Comments
Yes, I even have a STM32H7 lying around somewhere, but I got it before discovering the clock tree and power peripheral complexity and then was a bit demotivated to actually continue porting this. If you open a PR with your code, I'll very happily check out the linker issue (should theoretically use this linkerscript template due to caches etc.) |
Also note that the STM32H7 data in modm-devices may not be accurate, since the memory layout is just… hardcoded… 🙈 |
Ok I guess that could explain the linking issues 😬 Here is the PR: #379 |
Single-core STM32H7 devices are now supported since #652. |
Are there any plans to support stm32h7 devices in the near future?
Playing around with lbuild and adapting the platform modules of
rcc
andgpio
I (almost) managed to have a succesful build of the blinky example. The linking stage is still failing due to some memory section overflow. I guess i'll have to adapt something there as well. Probably you can point me somewhere in case I missed something obvious.However, as far as I can judge, the h7 devices stand out a bit compared to the other stm32 devices.
At least the clock tree configuration seems to be quite different.
Would be interesting to know your plans regarding the stm32h7 devices.
Edit:
I just discovered this PR which includes some of the adaptations I was doing as well (good to know I was on the right path). I additionally did some adaptations to the
rcc
module although I wasn't able to test it due to the failing link stage.The text was updated successfully, but these errors were encountered: