cancel
Showing results for 
Search instead for 
Did you mean: 

Dummy question : .axf size greater than Flash size???

sfouques9
Associate II
Posted on November 13, 2009 at 05:51

Dummy question : .axf size greater than Flash size???

5 REPLIES 5
sfouques9
Associate II
Posted on May 17, 2011 at 09:59

Hello all,

Device = STR912

I don't understand how it works (JTAG programmation) : the flash size is 512K, and the file ''.axf'' size is 700k ??

As i'm working on a bootloader solution, I'd like to know if some informations of this file should not been downloaded in flash ??

thank you

sfouques9
Associate II
Posted on May 17, 2011 at 09:59

Hello all,

OK, for those who ask themselves the same question : you need to generate the .bin file from the .axf file with the fromelf.exe software provided by Keil (if using Keil) or any converter you may choose.

In Project : Option --> User --> Run User program After Build/rebuild, mark #1 with :

c:\keil\ARM\BIN31\fromelf.exe --bin -o FileName.bin FileName.axf

This .bin file is the one to use with the bootloader.

Regards

That's really helped me a lot, Thanks!

Generally a great deal of symbol and debug information goes into the file so it can be quite expansive.

You can get an effective dump/disassembly via

FromELF -c -s -d foo.axf >foo.lst

Tips, buy me a coffee, or three.. PayPal Venmo Up vote any posts that you find helpful, it shows what's working..

yes, or

arm-none-eabi-objcopy -O binary foo.axf foo.bin

when using the arm-none-gnu-eabi toolchain🙂