X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=tos%2Fplatforms%2Ftelosb%2Fmac%2Ftkn154%2FIeee802154MacC.nc;h=950db2f09e70da1a297c74334388eafbae7f51c4;hb=82c215ff867ea7ef4fa748fb72b686c32ffb25e1;hp=f59ebd76267bbef44280e7b5a2c65553597424a1;hpb=afb6da3df34fdebb6843598761ef4de5eb0186f6;p=tinyos-2.x.git diff --git a/tos/platforms/telosb/mac/tkn154/Ieee802154MacC.nc b/tos/platforms/telosb/mac/tkn154/Ieee802154MacC.nc index f59ebd76..950db2f0 100644 --- a/tos/platforms/telosb/mac/tkn154/Ieee802154MacC.nc +++ b/tos/platforms/telosb/mac/tkn154/Ieee802154MacC.nc @@ -95,8 +95,9 @@ implementation Packet = MAC; components CC2420TKN154C as PHY, - new Alarm62500hz32VirtualizedC() as PHYAlarm1, + new Alarm62500hz32C() as PHYAlarm1, new Alarm62500hz32VirtualizedC() as PHYAlarm2, + new Alarm62500hz32C() as TKN154TimingPAlarm, LocalTime62500hzC, TKN154TimingP; // wire PHY to the PIB @@ -117,7 +118,8 @@ implementation PHY.TimeCalc -> MAC; PHY.Leds -> LedsC; TKN154TimingP.TimeCalc -> MAC; - TKN154TimingP.LocalTime -> LocalTime62500hzC; + TKN154TimingP.Leds -> LedsC; + TKN154TimingP.SymbolAlarm -> TKN154TimingPAlarm; components new Alarm62500hz32VirtualizedC() as MACAlarm1, new Alarm62500hz32VirtualizedC() as MACAlarm2, @@ -164,6 +166,7 @@ implementation components RandomC, LedsC, NoLedsC; MAC.Random -> RandomC; MAC.Leds -> LedsC; + PHY.Random -> RandomC; #ifdef TKN154_SERIAL_DEBUG components SerialDebugC as Debug;