2015-07-07 01:48 AM
Hi,
I'm using STM32L053 Nucleo, I have wrote some code for it to run, and I wish to do a RAM estimation to see RAM usage of current firmware. How to see the RAM usage? Regards #memorySolved! Go to Solution.
2015-11-13 05:56 AM
Hello,
You can list compilation information by using specific parameters on you compiler for arm some options are: --map --xref --callgraph --symbols --info sizes --info totals --info unused (combined with -list file it can be redirected to a file). If you are using an IDE it is available in your project settings (i.e. for keil you can find it in Project -> Option for Target ... in the listing Tab you will find same information).
I hope this can be helpful, Have a nice day.2015-11-13 05:56 AM
Hello,
You can list compilation information by using specific parameters on you compiler for arm some options are: --map --xref --callgraph --symbols --info sizes --info totals --info unused (combined with -list file it can be redirected to a file). If you are using an IDE it is available in your project settings (i.e. for keil you can find it in Project -> Option for Target ... in the listing Tab you will find same information).
I hope this can be helpful, Have a nice day.