]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/chips/rf2xx/layers/DummyLayerC.nc
reorganized packet header handling, added RF212Ieee154MessageC for BLIP
[tinyos-2.x.git] / tos / chips / rf2xx / layers / DummyLayerC.nc
index 3b76025d722aef3e180f5e62e9df2fb5a2dbbd2d..a595974bae878bfda7ae7f3c95e7b0651d3b9cdd 100644 (file)
@@ -33,19 +33,22 @@ generic configuration DummyLayerC()
                interface RadioSend;
                interface RadioReceive;
                interface RadioCCA;
+               interface RadioPacket;
 
                interface DummyConfig as UnconnectedConfig;
        }
 
        uses 
        {
+               interface SplitControl as SubControl;
+               interface Send as SubSend;
+               interface Receive as SubReceive;
+
                interface RadioState as SubState;
                interface RadioSend as SubRadioSend;
                interface RadioReceive as SubRadioReceive;
                interface RadioCCA as SubRadioCCA;
-               interface SplitControl as SubControl;
-               interface Send as SubSend;
-               interface Receive as SubReceive;
+               interface RadioPacket as SubPacket;
 
                interface DummyConfig as Config;
        }
@@ -57,6 +60,7 @@ implementation
        RadioSend = SubRadioSend;
        RadioReceive = SubRadioReceive;
        RadioCCA = SubRadioCCA;
+       RadioPacket = SubPacket;
 
        SplitControl = SubControl;
        Send = SubSend;