]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/chips/rf2xx/layers/LowPowerListeningDummyC.nc
reorganized packet header handling, added RF212Ieee154MessageC for BLIP
[tinyos-2.x.git] / tos / chips / rf2xx / layers / LowPowerListeningDummyC.nc
index fab03147644d0c60177cf904179f46ac94c379a0..816710ec8627c91f4e0472d1d7de079c6eaf96c7 100644 (file)
@@ -28,6 +28,7 @@ configuration LowPowerListeningDummyC
                interface SplitControl;
                interface Send;
                interface Receive;
+               interface RadioPacket;
 
                interface LowPowerListening;
        }
@@ -36,6 +37,7 @@ configuration LowPowerListeningDummyC
                interface SplitControl as SubControl;
                interface Send as SubSend;
                interface Receive as SubReceive;
+               interface RadioPacket as SubPacket;
        }
 }
 
@@ -44,6 +46,7 @@ implementation
        SplitControl = SubControl;
        Send = SubSend;
        Receive = SubReceive;
+       RadioPacket = SubPacket;
 
        components LowPowerListeningDummyP;
        LowPowerListening = LowPowerListeningDummyP;