memory_manager.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #ifndef _MEMORY_H
  2. #define _MEMORY_H
  3. #include <stdint.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #define AXISRAMSIZE 512 * 1024
  7. #define SRAM1SIZE 128 * 1024
  8. #define SRAM2SIZE 128 * 1024
  9. #define SDRAMSIZE 28 * 1024 * 1024
  10. /* 定义链表结构。这是用来连接自由块的他们的记忆地址 */
  11. typedef struct A_BLOCK_LINK
  12. {
  13. struct A_BLOCK_LINK *pxNextFreeBlock; /* 列表中的下一个自由块 */
  14. size_t xBlockSize; /* 自由块的大小 */
  15. } BlockLink_t;
  16. typedef struct
  17. {
  18. volatile uint8_t *pMemory; /* 创建内存地址 */
  19. volatile size_t size; /* 创建内存大小 */
  20. BlockLink_t pStart; /* 创建内存开始 链表标记 */
  21. BlockLink_t *pEnd; /* 创建内存结束 链表标记 */
  22. volatile size_t Free; /* 内存当前最小剩余 */
  23. volatile size_t MinFree; /* 内存历史最小剩余 */
  24. } MemoryStruct;
  25. extern MemoryStruct SRAM0;
  26. extern MemoryStruct SRAM1;
  27. extern MemoryStruct SRAM2;
  28. extern MemoryStruct SDRAM;
  29. /*内存初始化*/
  30. extern void pMemoryInit(MemoryStruct *mem);
  31. /*内存申请*/
  32. extern void *pMemoryMalloc(MemoryStruct *mem, size_t xWantedSize);
  33. /*内存重申请*/
  34. extern void *pMemoryReMalloc(MemoryStruct *mem1, MemoryStruct *mem2, void *ptr, size_t size);
  35. /*内存释放*/
  36. extern void pMemoryFree(MemoryStruct *mem, void *pv);
  37. /*内存当前剩余*/
  38. extern size_t pMemoryGetFreeMemorySize(MemoryStruct *mem);
  39. /*内存历史最小剩余*/
  40. extern size_t pMemoryGetMinimumEverFreeMemorySize(MemoryStruct *mem);
  41. #endif