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

📄 msp430timercommonp.nc

📁 tinyos2.0版本驱动
💻 NC
字号:
module Msp430TimerCommonP{  provides interface Msp430TimerEvent as VectorTimerA0;  provides interface Msp430TimerEvent as VectorTimerA1;  provides interface Msp430TimerEvent as VectorTimerB0;  provides interface Msp430TimerEvent as VectorTimerB1;  uses interface PlatformInterrupt;}implementation{  TOSH_SIGNAL(TIMERA0_VECTOR) {     signal VectorTimerA0.fired();     call PlatformInterrupt.postAmble();  }  TOSH_SIGNAL(TIMERA1_VECTOR) {     signal VectorTimerA1.fired();    call PlatformInterrupt.postAmble();  }  TOSH_SIGNAL(TIMERB0_VECTOR) {     signal VectorTimerB0.fired();    call PlatformInterrupt.postAmble();  }  TOSH_SIGNAL(TIMERB1_VECTOR) {     signal VectorTimerB1.fired();    call PlatformInterrupt.postAmble();  }}

⌨️ 快捷键说明

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