mem.nc
来自「IEEE802.15.4标准下的基于ZIGBEE协议栈的物理及链路层的代码」· NC 代码 · 共 20 行
NC
20 行
/** * **/#include "ZBTYPES.h"interface Mem { async command error_t malloc(mem_head_t** p, uint8_t size); async command error_t free(mem_head_t* p); async command uint8_t getSize(mem_head_t* p); async command uint8_t getCurrentPos(mem_head_t* p); async command error_t setCurrentPos(mem_head_t* p, uint8_t pos); async command void dumpMem();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?