timotet 44 Posted February 7, 2013 Share Posted February 7, 2013 This is probably obvious but... How do I find the size of my compiled program in CCS? thanks peawlbral 1 Quote Link to post Share on other sites
TI_Trey 38 Posted February 8, 2013 Share Posted February 8, 2013 Check out your map file. The map file basically shows how each part of your program was allocated to the available memory. This makes it easy to tell which parts of memory you are filling up and which parts you have more space. Opening the map file can easily be done by looking in the build folder. Typically in CCS these are named "Debug" or "Release" by default, but in the LaunchPad projects these are named "RAM" and "Flash". Look for the file with the "map" extension and open it. Let me know if you need help interpreting it. Quote Link to post Share on other sites
timotet 44 Posted February 9, 2013 Author Share Posted February 9, 2013 Thanks Trey Is there a way to set up the linker to to output the code size to the console after compile? Quote Link to post Share on other sites
TI_Trey 38 Posted February 11, 2013 Share Posted February 11, 2013 No I don't believe there is a way to do that. Information like this on the compiler and linker can be found in the Assembly Language Tools User's Guide (SPRU513). Trey Quote Link to post Share on other sites
timotet 44 Posted February 11, 2013 Author Share Posted February 11, 2013 thanks Trey Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.