2017-11-06 07:50 PM
I'd like to make and upload the firmware file into STM32F103C8 board by using UART.
Especially, STM32F103C8 board have boot mode switch and uart connect.How to make firmware *.bin file to upload to STM32F103C8 by using MDK?
Solved! Go to Solution.
2017-11-06 09:23 PM
After Build/Rebuild, Run ♯ 1
, figure you are processing the .AXF after the linker has generated it. Pretty sure there is documentation.2017-11-06 07:59 PM
Keil has a FromELF utility, you can run it from the user tab to build a .BIN file.
$K\ARM\ARMCC\bin\fromelf.exe --bin --output=@L.bin !L
2017-11-06 08:02 PM
Go to your toolchain project settings, probably as linker or post linker option where you can generate optionally a MAP, BIN, HEX or SREC/S19 files.
2017-11-06 09:14 PM
Would you mind let me know what should I do for applying ''
$K\ARM\ARMCC\bin\fromelf.exe --bin --output=@L.bin !L''?
2017-11-06 09:23 PM
After Build/Rebuild, Run ♯ 1
, figure you are processing the .AXF after the linker has generated it. Pretty sure there is documentation.