heap.c 181 B

1234567891011
  1. #include <rtthread.h>
  2. #include <stdlib.h>
  3. size_t get_free_heap_size(void)
  4. {
  5. rt_uint32_t total, used, max;
  6. rt_memory_info(&total, &used, &max);
  7. return total - used;
  8. }