storage.nc

来自「无线传感器网络中的节点定位算法。详见ReadMe文件。在TinyOS上实现的节点」· NC 代码 · 共 16 行

NC
16
字号
/* * Storage.nc * David Moore <dcm@csail.mit.edu> */interface Storage {    /* Reads a header and a variable amount of data from     * non-volatile flash memory. */    command result_t ReadDataHeader(uint8_t * version,            uint8_t * buf, uint16_t len);    /* Writes a header and a variable amount of data to the     * non-volatile flash memory. */    command void WriteDataHeader(uint8_t version,            uint8_t * buf, uint16_t len);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?