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

网络

开发平台:

Others

  1. // $Id: CC1000RadioC.nc,v 1.1.1.1 2005/04/22 04:26:45 acwarrie Exp $
  2. /* tab:4
  3.  * "Copyright (c) 2000-2003 The Regents of the University  of California.  
  4.  * All rights reserved.
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software and its
  7.  * documentation for any purpose, without fee, and without written agreement is
  8.  * hereby granted, provided that the above copyright notice, the following
  9.  * two paragraphs and the author appear in all copies of this software.
  10.  * 
  11.  * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
  12.  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
  13.  * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
  14.  * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  15.  * 
  16.  * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
  17.  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  18.  * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
  19.  * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
  20.  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS."
  21.  *
  22.  * Copyright (c) 2002-2003 Intel Corporation
  23.  * All rights reserved.
  24.  *
  25.  * This file is distributed under the terms in the attached INTEL-LICENSE     
  26.  * file. If you do not find these files, copies can be found by writing to
  27.  * Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, Berkeley, CA, 
  28.  * 94704.  Attention:  Intel License Inquiry.
  29.  */
  30. /*
  31.  * Authors: Philip Buonadonna
  32.  * Date last modified: $Revision: 1.1.1.1 $
  33.  *
  34.  */
  35. /**
  36.  * @author Philip Buonadonna
  37.  */
  38. configuration CC1000RadioC
  39. {
  40.   provides {
  41.     interface StdControl;
  42.     interface BareSendMsg as Send;
  43.     interface ReceiveMsg as Receive;
  44.     interface CC1000Control;
  45.     interface RadioCoordinator as RadioReceiveCoordinator;
  46.     interface RadioCoordinator as RadioSendCoordinator;
  47.   }
  48. }
  49. implementation
  50. {
  51.   components CC1000RadioIntM as CC1000RadioM, CC1000ControlM, HPLCC1000M, 
  52.     RandomLFSR, ADCC, HPLSpiM, TimerC, HPLPowerManagementM, TinySecC, LedsC;
  53.   StdControl = CC1000RadioM;
  54.   StdControl = TinySecC;
  55.   Send = TinySecC.Send;
  56.   Receive = TinySecC.Receive;
  57.   TinySecC.RadioSend -> CC1000RadioM;
  58.   TinySecC.RadioReceive -> CC1000RadioM;
  59.   TinySecC.TinySecRadio -> CC1000RadioM.TinySecRadio;
  60.   CC1000RadioM.TinySec -> TinySecC.TinySec;
  61.   CC1000Control = CC1000ControlM;
  62.   RadioReceiveCoordinator = CC1000RadioM.RadioReceiveCoordinator;
  63.   RadioSendCoordinator = CC1000RadioM.RadioSendCoordinator;
  64.   CC1000RadioM.CC1000StdControl -> CC1000ControlM;
  65.   CC1000RadioM.CC1000Control -> CC1000ControlM;
  66.   CC1000RadioM.Random -> RandomLFSR;
  67.   CC1000RadioM.ADCControl -> ADCC;
  68.   CC1000RadioM.RSSIADC -> ADCC.ADC[TOS_ADC_CC_RSSI_PORT];
  69.   CC1000RadioM.SpiByteFifo -> HPLSpiM;
  70.   CC1000RadioM.TimerControl -> TimerC.StdControl;
  71.   CC1000RadioM.SquelchTimer -> TimerC.Timer[unique("Timer")];
  72.   CC1000RadioM.WakeupTimer -> TimerC.Timer[unique("Timer")];
  73.   CC1000RadioM.Leds -> LedsC;
  74.   //  CC1000RadioM.SysTime->SysTimeC;
  75.   CC1000ControlM.HPLChipcon -> HPLCC1000M;
  76.   CC1000RadioM.PowerManagement ->HPLPowerManagementM.PowerManagement;
  77.   HPLSpiM.PowerManagement ->HPLPowerManagementM.PowerManagement;
  78. }