⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 twonodecomm.nc

📁 Tinyos下的简单通讯模型
💻 NC
字号:
configuration TwoNodeComm { }
implementation {
	components Main,TwoNodeCommM,DataServer,GenericComm as Comm,TimerStart;
	
	Main.StdControl -> TwoNodeCommM;
	Main.StdControl -> TimerStart;

	TwoNodeCommM.ProcessData -> DataServer.ProcessData;
	TwoNodeCommM.CommControl -> Comm;
	TwoNodeCommM.SendMsg -> Comm.SendMsg[8];
	TwoNodeCommM.ReceiveMsg -> Comm.ReceiveMsg[8];
	TwoNodeCommM.Timer -> TimerStart.Timer;
} 

⌨️ 快捷键说明

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