Skip to main content
CFeng.1
Associate
August 28, 2020
Solved

STM32H745: Dual-Core Bootloader I plan to implement a custom bootloader for dual-core device STM32H745. Can I just use 1 bootloader on CM4 side and flash the images for CM4 and CM7? Thanks!

  • August 28, 2020
  • 3 replies
  • 1433 views

..

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

Yes, this is viable. You'll need to ensure only the CM4 starts up, then start the other core in your program if needed. Or use the CM7 as bootloader. Both cores have access to the entire FLASH space.

3 replies

TDK
TDKBest answer
August 28, 2020

Yes, this is viable. You'll need to ensure only the CM4 starts up, then start the other core in your program if needed. Or use the CM7 as bootloader. Both cores have access to the entire FLASH space.

"If you feel a post has answered your question, please click ""Accept as Solution""."
CFeng.1
CFeng.1Author
Associate
August 31, 2020

Thank you for the quick answer. Using CM7 as bootloader seems easier for my project.

KWest.1
Associate II
March 15, 2021

@TDK when you say "You'll need to ensure only the CM4 starts up, then start the other core in your program if needed." ... any clues on where I might find how to do this.