timerasyncc.nc

来自「Zigbee的nesc源码」· NC 代码 · 共 22 行

NC
22
字号
/*
 * @author IPP HURRAY http://www.hurray.isep.ipp.pt/art-wise
 * @author Andre Cunha
 *
 */

configuration TimerAsyncC
{
	provides interface TimerAsync;
}
implementation
{
	components TimerAsyncM, HPLTimer2C as CPUClockTimer, LedsC;

	TimerAsync = TimerAsyncM;
	TimerAsyncM.Timer -> CPUClockTimer;
	TimerAsyncM.Leds -> LedsC;
}



⌨️ 快捷键说明

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