Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed-rtosMemoryTest mbed
heapsize.hpp
00001 #ifndef __HEAPSIZE_HPP__ 00002 #define __HEAPSIZE_HPP__ 00003 00004 unsigned long heapSize() 00005 { 00006 char stackVariable; 00007 void *heap; 00008 unsigned long result; 00009 heap = malloc(4); 00010 result = (uint8_t*)&stackVariable - (uint8_t*)heap; 00011 free(heap); 00012 return result; 00013 } 00014 00015 #endif
Generated on Mon Jul 18 2022 20:36:50 by
1.7.2