X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=tos%2Fchips%2Frf2xx%2Flayers%2FDummyLayerC.nc;h=a595974bae878bfda7ae7f3c95e7b0651d3b9cdd;hb=97e9cb5f12a8fcdd7537ddd0eec19ffe364af663;hp=3b76025d722aef3e180f5e62e9df2fb5a2dbbd2d;hpb=51b365b6cb1df293dac98e285ae4856c2dccba2b;p=tinyos-2.x.git diff --git a/tos/chips/rf2xx/layers/DummyLayerC.nc b/tos/chips/rf2xx/layers/DummyLayerC.nc index 3b76025d..a595974b 100644 --- a/tos/chips/rf2xx/layers/DummyLayerC.nc +++ b/tos/chips/rf2xx/layers/DummyLayerC.nc @@ -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;