/* * sdram_heap.h * Description: * * Created on: 2014-10-8 * Author: DELL * Modify: */ #ifndef SDRAM_HEAP_H_ #define SDRAM_HEAP_H_ #include uvoid hmem_init(void); uvoidptr mymalloc(mymalloc_style type, uint32_t size); uvoid myfree(mymalloc_style type, uvoidptr ptr); uvoid hmem_free(void); short hmem_perused(mymalloc_style type); void* sram_malloc(int memtype , int size); void sram_free(int memtype ,void* ptr); int sram_free_space(int memtype); #endif /* SDRAM_HEAP_H_ */