X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=tos%2Flib%2Fnet%2Fblip%2FIPDispatchC.nc;h=a90b7ed1f2489f52d5cf52fc95e8de60b8faf26b;hb=30164611e5ab7e8a2b4d24c7d16256c1865b4e20;hp=407aca655fc64673ccff4d9611a9ebfe658912b2;hpb=efbd5d9ccde06b90cb240f6ce00fd96ed4829821;p=tinyos-2.x.git diff --git a/tos/lib/net/blip/IPDispatchC.nc b/tos/lib/net/blip/IPDispatchC.nc index 407aca65..a90b7ed1 100644 --- a/tos/lib/net/blip/IPDispatchC.nc +++ b/tos/lib/net/blip/IPDispatchC.nc @@ -39,7 +39,7 @@ configuration IPDispatchC { } } implementation { - components Ieee154MessageC as MessageC, ResourceSendP; + components Ieee154MessageC as MessageC; components MainC, IPDispatchP, IPAddressC, IPRoutingP; components NoLedsC as LedsC; components RandomC; @@ -50,6 +50,7 @@ configuration IPDispatchC { IPDispatchP.Boot -> MainC; + components ResourceSendP; ResourceSendP.SubSend -> MessageC; ResourceSendP.Resource -> MessageC.SendResource[unique(IEEE154_SEND_CLIENT)]; IPDispatchP.Ieee154Send -> ResourceSendP.Ieee154Send; @@ -60,11 +61,10 @@ configuration IPDispatchC { IPDispatchP.LowPowerListening -> MessageC; #endif - components CC2420PacketC; - + components ReadLqiC; IPDispatchP.Ieee154Packet -> MessageC; IPDispatchP.PacketLink -> MessageC; - IPDispatchP.CC2420Packet -> CC2420PacketC; + IPDispatchP.ReadLqi -> ReadLqiC; IPDispatchP.Leds -> LedsC;