Skip to main content
Visitor II
December 18, 2020
Solved

Is there a project that DEFINITELY works with the STM32H735G-DK board?

  • December 18, 2020
  • 1 reply
  • 838 views

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.)

    This topic has been closed for replies.
    Best answer by TDK

    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.

    1 reply

    TDKAnswer
    Super User
    December 19, 2020

    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.

    DMois.1Author
    Visitor II
    December 21, 2020

    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?