]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - apps/tosthreads/apps/BaseStation/BaseStationAppC.nc
Update to tosthreads nesC based BaseStation application based on changes to wiring...
[tinyos-2.x.git] / apps / tosthreads / apps / BaseStation / BaseStationAppC.nc
index b3e6a868bc4f70d87a4e90036f479880c7873155..a83de933b2b288af94accc41fe22bc78a05b4b5b 100644 (file)
@@ -124,4 +124,12 @@ implementation
   SerialReceiveRadioSendP.SendAMPacket -> BlockingRadioActiveMessageC;             
   SerialReceiveRadioSendP.BlockingReceiveAny -> BlockingSerialActiveMessageC.BlockingReceiveAny;
   SerialReceiveRadioSendP.BlockingAMSend -> BlockingRadioActiveMessageC;
+  
+  components ActiveMessageC, SerialActiveMessageC;
+  BlockingRadioActiveMessageC.Receive -> ActiveMessageC.Receive;
+  BlockingRadioActiveMessageC.Snoop -> ActiveMessageC.Snoop;
+  BlockingRadioActiveMessageC.AMSend -> ActiveMessageC.AMSend;
+  
+  BlockingSerialActiveMessageC.Receive -> SerialActiveMessageC.Receive;
+  BlockingSerialActiveMessageC.AMSend -> SerialActiveMessageC.AMSend;
 }