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.
2020-11-03 05: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.
2020-11-03 05: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.
2020-11-03 08:43 PM
Dear TDK,
Thanks to you. Now it works fine.