startdiffusion.nc

来自「tinyos最新版」· NC 代码 · 共 31 行

NC
31
字号
/* * Authors:		Sarah Bergbreiter * Date last modified:  10/25/03 * *//**  * * @author Sarah Bergbreiter **/includes BeepDiffusionMsg;configuration StartDiffusion { }implementation {  components Main, StartDiffusionM, GenericComm as Comm, TimerC, LedsC;  Main.StdControl -> StartDiffusionM;  Main.StdControl -> Comm.Control;  Main.StdControl -> TimerC;  StartDiffusionM.Leds -> LedsC;  StartDiffusionM.SendMsg -> Comm.SendMsg[AM_BEEPDIFFUSIONRESETMSG];  StartDiffusionM.MsgTimer -> TimerC.Timer[unique("Timer")];} // end of implementation

⌨️ 快捷键说明

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