]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/chips/rf2xx/rf212/RF212DriverLayerC.nc
Merge TinyOS 2.1.1 into master.
[tinyos-2.x.git] / tos / chips / rf2xx / rf212 / RF212DriverLayerC.nc
diff --git a/tos/chips/rf2xx/rf212/RF212DriverLayerC.nc b/tos/chips/rf2xx/rf212/RF212DriverLayerC.nc
new file mode 100644 (file)
index 0000000..73b6b5e
--- /dev/null
@@ -0,0 +1,106 @@
+/*
+ * Copyright (c) 2007, Vanderbilt University
+ * 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 VANDERBILT UNIVERSITY 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 VANDERBILT
+ * UNIVERSITY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ * 
+ * THE VANDERBILT UNIVERSITY 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 VANDERBILT UNIVERSITY HAS NO OBLIGATION TO
+ * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
+ *
+ * Author: Miklos Maroti
+ */
+
+#include <RadioConfig.h>
+#include <RF212DriverLayer.h>
+
+configuration RF212DriverLayerC
+{
+       provides
+       {
+               interface RadioState;
+               interface RadioSend;
+               interface RadioReceive;
+               interface RadioCCA;
+               interface RadioPacket;
+
+               interface PacketField<uint8_t> as PacketTransmitPower;
+               interface PacketField<uint8_t> as PacketRSSI;
+               interface PacketField<uint8_t> as PacketTimeSyncOffset;
+               interface PacketField<uint8_t> as PacketLinkQuality;
+
+               interface LocalTime<TRadio> as LocalTimeRadio;
+       }
+
+       uses
+       {
+               interface RF212DriverConfig as Config;
+               interface PacketTimeStamp<TRadio, uint32_t>;
+       }
+}
+
+implementation
+{
+       components RF212DriverLayerP, HplRF212C, BusyWaitMicroC, TaskletC, MainC, RadioAlarmC;
+
+       RadioState = RF212DriverLayerP;
+       RadioSend = RF212DriverLayerP;
+       RadioReceive = RF212DriverLayerP;
+       RadioCCA = RF212DriverLayerP;
+       RadioPacket = RF212DriverLayerP;
+
+       LocalTimeRadio = HplRF212C;
+
+       Config = RF212DriverLayerP;
+
+       PacketTransmitPower = RF212DriverLayerP.PacketTransmitPower;
+       components new MetadataFlagC() as TransmitPowerFlagC;
+       RF212DriverLayerP.TransmitPowerFlag -> TransmitPowerFlagC;
+
+       PacketRSSI = RF212DriverLayerP.PacketRSSI;
+       components new MetadataFlagC() as RSSIFlagC;
+       RF212DriverLayerP.RSSIFlag -> RSSIFlagC;
+
+       PacketTimeSyncOffset = RF212DriverLayerP.PacketTimeSyncOffset;
+       components new MetadataFlagC() as TimeSyncFlagC;
+       RF212DriverLayerP.TimeSyncFlag -> TimeSyncFlagC;
+
+       PacketLinkQuality = RF212DriverLayerP.PacketLinkQuality;
+       PacketTimeStamp = RF212DriverLayerP.PacketTimeStamp;
+
+       RF212DriverLayerP.LocalTime -> HplRF212C;
+
+       RF212DriverLayerP.RadioAlarm -> RadioAlarmC.RadioAlarm[unique("RadioAlarm")];
+       RadioAlarmC.Alarm -> HplRF212C.Alarm;
+
+       RF212DriverLayerP.SELN -> HplRF212C.SELN;
+       RF212DriverLayerP.SpiResource -> HplRF212C.SpiResource;
+       RF212DriverLayerP.FastSpiByte -> HplRF212C;
+
+       RF212DriverLayerP.SLP_TR -> HplRF212C.SLP_TR;
+       RF212DriverLayerP.RSTN -> HplRF212C.RSTN;
+
+       RF212DriverLayerP.IRQ -> HplRF212C.IRQ;
+       RF212DriverLayerP.Tasklet -> TaskletC;
+       RF212DriverLayerP.BusyWait -> BusyWaitMicroC;
+
+#ifdef RADIO_DEBUG
+       components DiagMsgC;
+       RF212DriverLayerP.DiagMsg -> DiagMsgC;
+#endif
+
+       MainC.SoftwareInit -> RF212DriverLayerP.SoftwareInit;
+
+       components RealMainP;
+       RealMainP.PlatformInit -> RF212DriverLayerP.PlatformInit;
+}