heap.c 181 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11
#include <rtthread.h>
#include <stdlib.h>

size_t get_free_heap_size(void)
{
    rt_uint32_t total, used, max;

    rt_memory_info(&total, &used, &max);

    return total - used;
}