lishuang.xie b4919a9c92 1. update New Feature#1006
2. modify case 0:  LTE 2 ape testcase(1 cell)
3. modify case 20: NR  4 ape testcase(1 cell)
4. modify case 21: NR  8 ape testcase(2 cell)
5. modify case 22: LTE 8 ape testcase(2 cell)
2023-08-23 16:18:40 +08:00

10 lines
196 B
C

#ifndef __OSP_HEAP__
#define __OSP_HEAP__
extern int8_t osp_heap_mem_init(uint32_t addr, uint32_t size);
extern char *osp_heap_malloc(uint32_t size);
extern void osp_heap_free(char *p);
#endif