TestBedTopologyC.nc.~1.3.~
上传用户:joranyuan
上传日期:2022-06-23
资源大小:3306k
文件大小:0k
源码类别:

网络

开发平台:

Others

  1. // author: Ajit Warrier, using drand interface to find connectivity
  2. // on testbed topology
  3. configuration TestBedTopologyC {
  4. }
  5. implementation {
  6.   components Main, TestBedTopologyM, DrandC, CC1000ControlM, GenericComm as Comm, TimerC;
  7.   Main.StdControl -> TimerC;
  8.   Main.StdControl -> Comm;
  9.   Main.StdControl -> TestBedTopologyM.StdControl;
  10.   TestBedTopologyM.SubControl -> DrandC;
  11.   TestBedTopologyM.Drand -> DrandC.Drand;
  12.   TestBedTopologyM.RFset -> CC1000ControlM.CC1000Control;
  13. }