collectionsenderc.nc

来自「tinyos-2.0源代码!转载而已!要的尽管拿!」· NC 代码 · 共 25 行

NC
25
字号
/** * The virtualized collection sender abstraction. * * @author Kyle Jamieson * @author Philip Levis * @date April 25 2006 * @see TinyOS Net2-WG */#include "Collection.h"#include "TreeCollection.h"generic configuration CollectionSenderC(collection_id_t collectid) {  provides {    interface Send;    interface Packet;  }}implementation {  components new CollectionSenderP(collectid, unique(UQ_COLLECTION_CLIENT));  Send = CollectionSenderP;  Packet = CollectionSenderP;}

⌨️ 快捷键说明

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