Hi ,
It has been mentioned that cc2540 minidk has 256KB Programmable memory and 8 KB RAM ,but my question is "how it is possible to load 324KB of keyfob_demo.hex in to the keyfob ,which has 256 KB of memory ?
That demo application is working fine for me .This question is to understand the memory consumption of cc2540.
Thanks in advance
Regards,
Senthil kumar.I
Hi,
The file size of the .hex does not reflect the actual size of the image that is written to the CC2540 SoC.
To see the size of the image written to the CC2540, you can use IAR. After you've built your project, have a look in the .map file found in the "Output" folder (Left frame of IAR). At the bottom you'll find the CODE memory, which is what you are looking for.
Br
I think you are looking at the file size on the PC and not the size of the image. The file is not a binary file; the format is intel-hex, and it represents an image of 115 KB.
thanks for your reply !