11 years, 3 months ago.

Download a file .axf in mbed for LPC1768?

Hi, Is possible to download a code compiled with keil in format .axf? Best regard

1 Answer

11 years, 3 months ago.

No. The .axf file format is not a pure binary image, it contains various other information such as debug symbols. More information can be found here :

However, if you are using Keil MDK, you can extract the pure binary from the AXF file using the "FromElf" utility.

fromelf --bin --outfile=outfile.bin infile.axf

For more information, see :