]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/chips/rf2xx/layers/IEEE154MessageLayerC.nc
add the SendNotifier interface
[tinyos-2.x.git] / tos / chips / rf2xx / layers / IEEE154MessageLayerC.nc
index 2040739fdf6950c8cbe18052bdb85a3c2a467b9d..ff23c69cc7685dbf99e70017d95461125823a388 100644 (file)
@@ -26,11 +26,17 @@ configuration IEEE154MessageLayerC
        provides
        {
                interface IEEE154MessageLayer;
+               interface RadioPacket;
+               interface Ieee154Packet;
+               interface Packet;
+               interface Ieee154Send;
+               interface SendNotifier;
        }
 
        uses
        {
-               interface IEEE154MessageConfig as Config;
+               interface RadioPacket as SubPacket;
+               interface Send as SubSend;
        }
 }
 
@@ -40,5 +46,11 @@ implementation
        IEEE154MessageLayerP.ActiveMessageAddress -> ActiveMessageAddressC;
 
        IEEE154MessageLayer = IEEE154MessageLayerP;
-       Config = IEEE154MessageLayerP;
+       RadioPacket = IEEE154MessageLayerP;
+       SubPacket = IEEE154MessageLayerP;
+       Ieee154Packet = IEEE154MessageLayerP;
+       Packet = IEEE154MessageLayerP;
+       Ieee154Send = IEEE154MessageLayerP;
+       SubSend = IEEE154MessageLayerP;
+       SendNotifier = IEEE154MessageLayerP;
 }