]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - apps/tests/rf230/RF230Sniffer/RF230SnifferC.nc
consolidated the normal and sniffer drivers
[tinyos-2.x.git] / apps / tests / rf230 / RF230Sniffer / RF230SnifferC.nc
index cf22b7dc0bf4300ab3e2030e11c83b26033055b1..d5ad506c0aa176b4e4782482b0e9869af579b462 100644 (file)
@@ -27,12 +27,17 @@ configuration RF230SnifferC
 
 implementation
 {
-       components RF230SnifferP, MainC, SerialActiveMessageC, RF230LayerC, IEEE154PacketC;
+       components RF230SnifferP, MainC, SerialActiveMessageC, RF230LayerC, DefaultMacP, DefaultPacketC, IEEE154PacketC, AssertC;
 
        RF230SnifferP.Boot -> MainC;
        RF230SnifferP.SplitControl -> SerialActiveMessageC;
+
        RF230SnifferP.RadioState -> RF230LayerC;
-       RF230SnifferP.IEEE154Packet -> IEEE154PacketC;
 
-       RF230LayerC.RF230Config -> RF230SnifferP;
+       RF230LayerC.RF230Config -> DefaultMacP;
+       RF230LayerC.PacketLinkQuality -> DefaultPacketC.PacketLinkQuality;
+       RF230LayerC.PacketTransmitPower -> DefaultPacketC.PacketTransmitPower;
+       RF230LayerC.PacketTimeStamp -> DefaultPacketC.PacketTimeStamp;
+
+       DefaultMacP.IEEE154Packet -> IEEE154PacketC;
 }