X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=tos%2Fchips%2Frf2xx%2Flayers%2FLowPowerListeningDummyC.nc;h=816710ec8627c91f4e0472d1d7de079c6eaf96c7;hb=97e9cb5f12a8fcdd7537ddd0eec19ffe364af663;hp=fab03147644d0c60177cf904179f46ac94c379a0;hpb=51b365b6cb1df293dac98e285ae4856c2dccba2b;p=tinyos-2.x.git diff --git a/tos/chips/rf2xx/layers/LowPowerListeningDummyC.nc b/tos/chips/rf2xx/layers/LowPowerListeningDummyC.nc index fab03147..816710ec 100644 --- a/tos/chips/rf2xx/layers/LowPowerListeningDummyC.nc +++ b/tos/chips/rf2xx/layers/LowPowerListeningDummyC.nc @@ -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;