2020-12-18 09:58 AM
Specifically, I'm looking for the minimum board configuration that will run in STM32CubeIDE, and an explanation of what the minimum settings are and in which memory space the firmware runs in. Is there a project in the STM32 library that unconditionally works without (much) tweaking?
(I made a copy of the original firmware. It works. I can reflash it all day, and it works. But that's not why I bought the board.)
Solved! Go to Solution.
2020-12-19 06:56 AM
Take your pick:
https://github.com/STMicroelectronics/STM32CubeH7/tree/master/Projects/STM32H735G-DK
The H7 has option bytes which are independent of the program. It's possible to mess things up by putting in non-standard values. Although if the built-in firmware works, that's probably not an issue.
2020-12-19 06:56 AM
Take your pick:
https://github.com/STMicroelectronics/STM32CubeH7/tree/master/Projects/STM32H735G-DK
The H7 has option bytes which are independent of the program. It's possible to mess things up by putting in non-standard values. Although if the built-in firmware works, that's probably not an issue.
2020-12-21 12:05 PM
Thanks. But another question came up: In STM32CubeH7IDE, the only projects that have the proper debug target are the ones that use the wizard, and the template project I want to use is not in the wizard. If I try to add a project as a regular C/C++ project and import the run/debug configuration from an STM32 example imported with the wizard, I get all kinds of popup messages about not having a valid configuration. How can you import these projects?