]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/chips/cc2420_lpl/CC2420TransmitC.nc
Removal - this stack has become the default.
[tinyos-2.x.git] / tos / chips / cc2420_lpl / CC2420TransmitC.nc
diff --git a/tos/chips/cc2420_lpl/CC2420TransmitC.nc b/tos/chips/cc2420_lpl/CC2420TransmitC.nc
deleted file mode 100644 (file)
index 442d282..0000000
+++ /dev/null
@@ -1,96 +0,0 @@
-/*\r
- * Copyright (c) 2005-2006 Arch Rock Corporation\r
- * All rights reserved.\r
- *\r
- * Redistribution and use in source and binary forms, with or without\r
- * modification, are permitted provided that the following conditions\r
- * are met:\r
- * - Redistributions of source code must retain the above copyright\r
- *   notice, this list of conditions and the following disclaimer.\r
- * - Redistributions in binary form must reproduce the above copyright\r
- *   notice, this list of conditions and the following disclaimer in the\r
- *   documentation and/or other materials provided with the\r
- *   distribution.\r
- * - Neither the name of the Arch Rock Corporation nor the names of\r
- *   its contributors may be used to endorse or promote products derived\r
- *   from this software without specific prior written permission.\r
- *\r
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\r
- * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE\r
- * ARCHED ROCK OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\r
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\r
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\r
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\r
- * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\r
- * OF THE POSSIBILITY OF SUCH DAMAGE\r
- */\r
-\r
-/**\r
- * Implementation of the transmit path for the ChipCon CC2420 radio.\r
- *\r
- * @author Jonathan Hui <jhui@archrock.com>\r
- * @version $Revision$ $Date$\r
- */\r
-\r
-#include "IEEE802154.h"\r
-\r
-configuration CC2420TransmitC {\r
-\r
-  provides {\r
-    interface Init;\r
-    interface AsyncStdControl;\r
-    interface CC2420Transmit;\r
-    interface CsmaBackoff;\r
-    interface RadioTimeStamping;\r
-    interface CC2420Cca;\r
-  }\r
-}\r
-\r
-implementation {\r
-\r
-  components CC2420TransmitP;\r
-  Init = Alarm;\r
-  Init = CC2420TransmitP;\r
-  AsyncStdControl = CC2420TransmitP;\r
-  CC2420Transmit = CC2420TransmitP;\r
-  CsmaBackoff = CC2420TransmitP;\r
-  RadioTimeStamping = CC2420TransmitP;\r
-  CC2420Cca = CC2420TransmitP;\r
-\r
-  components AlarmMultiplexC as Alarm;\r
-  CC2420TransmitP.BackoffTimer -> Alarm;\r
-\r
-#ifdef PLATFORM_MICAZ\r
-  components new TimerMilliC() as WatchdogTimerC;\r
-  CC2420TransmitP.WatchdogTimer -> WatchdogTimerC;\r
-#endif\r
-\r
-  components HplCC2420PinsC as Pins;\r
-  CC2420TransmitP.CCA -> Pins.CCA;\r
-  CC2420TransmitP.CSN -> Pins.CSN;\r
-  CC2420TransmitP.SFD -> Pins.SFD;\r
-\r
-  components HplCC2420InterruptsC as Interrupts;\r
-  CC2420TransmitP.CaptureSFD -> Interrupts.CaptureSFD;\r
-\r
-  components new CC2420SpiC() as Spi;\r
-  CC2420TransmitP.SpiResource -> Spi;\r
-  CC2420TransmitP.SNOP        -> Spi.SNOP;\r
-  CC2420TransmitP.STXON       -> Spi.STXON;\r
-  CC2420TransmitP.STXONCCA    -> Spi.STXONCCA;\r
-  CC2420TransmitP.SFLUSHTX    -> Spi.SFLUSHTX;\r
-  CC2420TransmitP.TXCTRL      -> Spi.TXCTRL;\r
-  CC2420TransmitP.TXFIFO      -> Spi.TXFIFO;\r
-  CC2420TransmitP.TXFIFO_RAM  -> Spi.TXFIFO_RAM;\r
-\r
-  components CC2420ReceiveC;\r
-  CC2420TransmitP.CC2420Receive -> CC2420ReceiveC;\r
-\r
-  components LedsC as Leds;\r
-  CC2420TransmitP.Leds -> Leds;\r
-\r
-}\r