(STM32H743Zit6 Dev. Board) Generate Bin file from zero address?? Need to generate bin file at start address 0x08000000
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-11-02 11:32 PM
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...
Solved! Go to Solution.
- Labels:
-
STM32H7 Series
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-11-03 5:30 AM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-11-03 5:30 AM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-11-03 8:43 PM
Dear TDK,
Thanks to you. Now it works fine.
