X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=tos%2Fchips%2Frf2xx%2Flayers%2FIEEE154MessageLayerC.nc;h=6ac1aa02d95d62eedce32ee2e1b8b10a4b828818;hb=97e9cb5f12a8fcdd7537ddd0eec19ffe364af663;hp=2040739fdf6950c8cbe18052bdb85a3c2a467b9d;hpb=51b365b6cb1df293dac98e285ae4856c2dccba2b;p=tinyos-2.x.git diff --git a/tos/chips/rf2xx/layers/IEEE154MessageLayerC.nc b/tos/chips/rf2xx/layers/IEEE154MessageLayerC.nc index 2040739f..6ac1aa02 100644 --- a/tos/chips/rf2xx/layers/IEEE154MessageLayerC.nc +++ b/tos/chips/rf2xx/layers/IEEE154MessageLayerC.nc @@ -26,11 +26,16 @@ configuration IEEE154MessageLayerC provides { interface IEEE154MessageLayer; + interface RadioPacket; + interface Ieee154Packet; + interface Packet; + interface Ieee154Send; } uses { - interface IEEE154MessageConfig as Config; + interface RadioPacket as SubPacket; + interface Send as SubSend; } } @@ -40,5 +45,10 @@ implementation IEEE154MessageLayerP.ActiveMessageAddress -> ActiveMessageAddressC; IEEE154MessageLayer = IEEE154MessageLayerP; - Config = IEEE154MessageLayerP; + RadioPacket = IEEE154MessageLayerP; + SubPacket = IEEE154MessageLayerP; + Ieee154Packet = IEEE154MessageLayerP; + Packet = IEEE154MessageLayerP; + Ieee154Send = IEEE154MessageLayerP; + SubSend = IEEE154MessageLayerP; }