From 5f21485fd98ea8cf43582a8d18e2e5172f781872 Mon Sep 17 00:00:00 2001 From: kristinwright Date: Sat, 5 Nov 2005 17:07:59 +0000 Subject: [PATCH] Remove imported files from trunk (they are on devel branch) --- .../Radio/TestBasicMac/TestBasicMacC.nc | 79 ------------------ .../Radio/TestBasicMac/TestBasicMacM.nc | 83 ------------------- 2 files changed, 162 deletions(-) delete mode 100644 apps/tests/eyesIFX/Radio/TestBasicMac/TestBasicMacC.nc delete mode 100644 apps/tests/eyesIFX/Radio/TestBasicMac/TestBasicMacM.nc diff --git a/apps/tests/eyesIFX/Radio/TestBasicMac/TestBasicMacC.nc b/apps/tests/eyesIFX/Radio/TestBasicMac/TestBasicMacC.nc deleted file mode 100644 index dcc451d7..00000000 --- a/apps/tests/eyesIFX/Radio/TestBasicMac/TestBasicMacC.nc +++ /dev/null @@ -1,79 +0,0 @@ -/* tab:4 - * "Copyright (c) 2000-2003 The Regents of the University of California. - * All rights reserved. - * - * Permission to use, copy, modify, and distribute this software and its - * documentation for any purpose, without fee, and without written agreement is - * hereby granted, provided that the above copyright notice, the following - * two paragraphs and the author appear in all copies of this software. - * - * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR - * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT - * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF - * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, - * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS - * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO - * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS." - * - * Copyright (c) 2002-2003 Intel Corporation - * All rights reserved. - * - * This file is distributed under the terms in the attached INTEL-LICENSE - * file. If you do not find these files, copies can be found by writing to - * Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, Berkeley, CA, - * 94704. Attention: Intel License Inquiry. - */ -/** - * - **/ - -includes Timer; -includes TOSMsg; -configuration TestBasicMacC { -} -implementation { - components Main, TestBasicMacM - , new AlarmMilliC() as SendTimer - , new OSKITimerMsC() as RxTimeoutTimer - , LedsC - , TDA5250RadioC - , RandomLfsrC - , UARTPhyM - , PacketSerializerM - , BasicMacM - ; - - Main.SoftwareInit -> TDA5250RadioC.Init; - Main.SoftwareInit -> RandomLfsrC.Init; - Main.SoftwareInit -> LedsC.Init; - Main.SoftwareInit -> UARTPhyM.Init; - Main.SoftwareInit -> PacketSerializerM.Init; - Main.SoftwareInit -> BasicMacM.Init; - TestBasicMacM -> Main.Boot; - - TestBasicMacM.Random -> RandomLfsrC.Random; - TestBasicMacM.SendTimer -> SendTimer; - TestBasicMacM.Leds -> LedsC; - TestBasicMacM.Send -> PacketSerializerM.Send; - TestBasicMacM.Receive -> PacketSerializerM.Receive; - TestBasicMacM.MacSplitControl -> BasicMacM.SplitControl; - - PacketSerializerM.RadioByteComm -> BasicMacM.RadioByteComm; - PacketSerializerM.PhyPacketTx -> BasicMacM.PhyPacketTx; - PacketSerializerM.PhyPacketRx -> BasicMacM.PhyPacketRx; - - BasicMacM.TDA5250Control -> TDA5250RadioC.TDA5250Control; - BasicMacM.TDA5250RadioByteComm -> UARTPhyM.SerializerRadioByteComm; - BasicMacM.TDA5250PhyPacketTx -> UARTPhyM.PhyPacketTx; - BasicMacM.TDA5250PhyPacketRx -> UARTPhyM.PhyPacketRx; - BasicMacM.RxTimeoutTimer -> RxTimeoutTimer; - BasicMacM.RadioSplitControl -> TDA5250RadioC.SplitControl; - - UARTPhyM.RadioByteComm -> TDA5250RadioC.RadioByteComm; -} - - - diff --git a/apps/tests/eyesIFX/Radio/TestBasicMac/TestBasicMacM.nc b/apps/tests/eyesIFX/Radio/TestBasicMac/TestBasicMacM.nc deleted file mode 100644 index 10e58003..00000000 --- a/apps/tests/eyesIFX/Radio/TestBasicMac/TestBasicMacM.nc +++ /dev/null @@ -1,83 +0,0 @@ -// $Id$ - -/* tab:4 - * "Copyright (c) 2000-2003 The Regents of the University of California. - * All rights reserved. - * - * Permission to use, copy, modify, and distribute this software and its - * documentation for any purpose, without fee, and without written agreement is - * hereby granted, provided that the above copyright notice, the following - * two paragraphs and the author appear in all copies of this software. - * - * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR - * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT - * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF - * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, - * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS - * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO - * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS." - * - * Copyright (c) 2002-2003 Intel Corporation - * All rights reserved. - * - * This file is distributed under the terms in the attached INTEL-LICENSE - * file. If you do not find these files, copies can be found by writing to - * Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, Berkeley, CA, - * 94704. Attention: Intel License Inquiry. - */ - -module TestBasicMacM { - uses { - interface Boot; - interface SplitControl as MacSplitControl; - interface Alarm as SendTimer; - interface Leds; - interface Random; - interface Send; - interface Receive; - } -} - -implementation { - - #define TIMER_RATE 500 - #define NUM_BYTES TOSH_DATA_LENGTH - - message_t sendMsg; - - event void Boot.booted() { - uint8_t i; - for(i=0; i