I am using XS1-U8A in my project.
When I compile the project, the console shows:
Memory available: 65536, used: 54064
But when I create an upgrade binary, the file size is 40192.
Do I miss something ?
used memory confusion
-
- Experienced Member
- Posts: 99
- Joined: Sat Aug 31, 2013 11:23 pm
-
- XCore Expert
- Posts: 844
- Joined: Sun Jul 11, 2010 1:31 am
Uninitialised / zero-initialised data ("bss") is
not stored in the program image. You probably
have a few big buffers.
not stored in the program image. You probably
have a few big buffers.
-
- Experienced Member
- Posts: 99
- Joined: Sat Aug 31, 2013 11:23 pm
thanks a lot.
forgot about sharing data / code space..
forgot about sharing data / code space..