• how to call malloc() or free() in interrupt function
    my problem is how to use malloc or free function in interrupt function,because the function like malloc() or free() is non_reentrant.But i have to do it in interrupt function to save memory. what shall...
  • how to call malloc() or free() in interrupt function
    my problem is how to use malloc or free function in interrupt function,because the function like malloc() or free() is non_reentrant.But i have to do it in interrupt function to save memory. what shall...
  • GNU: Problem with malloc function
    Im using the Codesourcery GNU tool chain with the Keil 4 eval version. The malloc function is not working, it just returns NULL. I found a knowledgebase article, GCC: CONFIGURING MALLOC FUNCTION...
  • GNU: Problem with malloc function
    Im using the Codesourcery GNU tool chain with the Keil 4 eval version. The malloc function is not working, it just returns NULL. I found a knowledgebase article, GCC: CONFIGURING MALLOC FUNCTION...
  • Function malloc() cause to trigger Reset Handler
    I am working with cortex-m4 microcontroller from TI TM4C123GH6PM. I am trying to allocate the memory space by following c syntax char *target; int size=10; target=(char *)malloc(size*sizeof(char...