• Reset Heap & malloc/free
    Hi there, Is there a way to re-initialize the whole heap region? It should also reset "internal pointer" of the malloc method. I use malloc/free in only one task and I want to start/stop this task...
  • Free heap size in ARM MDK C++ code
    I use C++ with dynamic memory allocation on the heap. How can I get the information, how much memory I use from the heap and/or how I can get the free heap size on runtime ? Best regards ...
  • heap
    Simple question probably.. I have define my heap in the startup.s Heap_Size EQU 0x00001032 In a function I use: void SST25_EditEXTStr(...) { unsigned char *buffer; buffer = malloc(0x1000...
  • Using External Memory for Heap
    How do I configure the HEAP to be placed within the external memory? I'm using an LPC1778 with 2MB external memory. I want the controller to calculate an a*-algorithm on a bitmap (loaded from sd...
  • Using external memory for the heap
    I'm trying to configure a STR9 system to use an external memory device connected as Ext, MEM CS0 but I can't seam to get the malloc function to return a pointer to off chip memory. I have changed the...