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

📄 testc.nc

📁 tinyos-2.x.rar
💻 NC
字号:

#define CC2420_DEF_RFPOWER 1
#define MAX_TABLE_SIZE 10
//#define DYMO_MONITORING

configuration TestC {

}

implementation {
  components TestM, DymoNetworkC;
  components MainC, LedsC, new TimerMilliC();

  TestM.Boot  -> MainC;
  TestM.Leds  -> LedsC;
  TestM.Timer -> TimerMilliC;
  TestM.SplitControl -> DymoNetworkC;
  TestM.Packet       -> DymoNetworkC;
  TestM.MHPacket     -> DymoNetworkC;
  TestM.Receive      -> DymoNetworkC.Receive[1];
  TestM.Intercept    -> DymoNetworkC.Intercept[1];
  TestM.MHSend       -> DymoNetworkC.MHSend[1];

#ifdef DYMO_MONITORING
  TestM.DymoMonitor -> DymoNetworkC;
#endif
}

⌨️ 快捷键说明

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