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

📄 mhleachpsc.nc

📁 Tinyos LEACH protocol modify
💻 NC
字号:
/*
* MHLeachRouter.nc - The configuration for the LEACH router
*
* @author Geoff Martin
* @date 18th April 2004
* @version 1.0
*/
configuration MHLeachPSC
{
	provides
	{
		interface StdControl;
		interface RouteSelect;
	}
}
implementation
{
	components MHLeachPSM, GenericComm as PSMComm, QueuedSend as PSMQueuedSend, 
	TimerC, RandomLFSR, LedsC;

	StdControl = MHLeachPSM.StdControl;
	RouteSelect = MHLeachPSM.RouteSelect;
	
	MHLeachPSM.StatusTimer -> TimerC.Timer[unique("Timer")];
	MHLeachPSM.RoundTimer -> TimerC.Timer[unique("Timer")];
	MHLeachPSM.ReceiveMsg -> PSMComm.ReceiveMsg[AM_MHMESSAGE];
	MHLeachPSM.SendMsg -> PSMQueuedSend.SendMsg[AM_MHMESSAGE];
	MHLeachPSM.Random -> RandomLFSR.Random;
	MHLeachPSM.Leds -> LedsC.Leds;
}

⌨️ 快捷键说明

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