Content originally posted in LPCWare by MikeSimmonds on Mon Nov 30 04:21:54 MST 2015
The .map files (text) is output as part of the link (final) step of the build process.
It shows the addresses and sizes of the various items (i.e. code and data etc.)
that make up the project.
It is a sort of report about the final download image.
This can help with various issues such as 'code too big', overruning memory (stack and heap),
and where in the address space the various functions and variables reside.
If all is OK, you need not look at it other than for interrest.
Finally, the axf file is the build result which is used by the flash program to burn the program
into the device. This is also used by the debugger to get the 'symbols' for debugging.
Cheers, Mike.