Skip to main content
Muneeswaran Manokaran
Associate II
November 3, 2020
Solved

(STM32H743Zit6 Dev. Board) Generate Bin file from zero address?? Need to generate bin file at start address 0x08000000

  • November 3, 2020
  • 1 reply
  • 1535 views

Hi,

I am using STM32H743Zit6 Dev. Board. while hex file file generation , program code is in 0x08000000 and upload it works fine.

when i want to generate bin file, so i use the following steps. Bin file generate is successful but program code is from zero address location.. Can anybody give suggestion to solve the problem...

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

BIN files do not have an address associated with their data, unlike ELF/HEX files. They only have the data.

To upload a BIN file, you specify the offset during programming. The ST-Link Utility is smart enough to set the flash address as the default.

1 reply

TDK
TDKBest answer
November 3, 2020

BIN files do not have an address associated with their data, unlike ELF/HEX files. They only have the data.

To upload a BIN file, you specify the offset during programming. The ST-Link Utility is smart enough to set the flash address as the default.

"If you feel a post has answered your question, please click ""Accept as Solution""."
Muneeswaran Manokaran
Associate II
November 4, 2020

Dear TDK,

Thanks to you. Now it works fine.