2015-03-03 07:41 AM
I would like to monitor the memory usage in my microcontroller. The purpose is to verify that there is no memory leak after a certain time. Is there a way to do this in debug mode or with an existing function?
2015-03-03 08:15 AM
Personally I just wrap malloc/free, tracking what happens there and also look for orphans and walk the heap.