]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - apps/UDPEcho/UDPEchoC.nc
commit svn HEAD of blip into core to start merge testing
[tinyos-2.x.git] / apps / UDPEcho / UDPEchoC.nc
index 8682984225720c85e98cd010c93cf69b8d818294..984f55d9ad34742ca669cfe76adb04e52645d286 100644 (file)
@@ -44,7 +44,9 @@ configuration UDPEchoC {
 
   UDPEchoP.StatusTimer -> TimerMilliC;
 
+  components UdpC;
   UDPEchoP.IPStats -> IPDispatchC.IPStats;
+  UDPEchoP.UDPStats -> UdpC;
   UDPEchoP.RouteStats -> IPDispatchC.RouteStats;
   UDPEchoP.ICMPStats -> IPDispatchC.ICMPStats;
 
@@ -59,14 +61,16 @@ configuration UDPEchoC {
 #ifdef DBG_TRACK_FLOWS
   components TestDriverP, SerialActiveMessageC as Serial;
   components ICMPResponderC, IPRoutingP;
-  components new TimerMilliC() as Mark;
   TestDriverP.Boot -> MainC;
   TestDriverP.SerialControl -> Serial;
   TestDriverP.ICMPPing -> ICMPResponderC.ICMPPing[unique("PING")];
   TestDriverP.CmdReceive -> Serial.Receive[AM_TESTDRIVER_MSG];
   TestDriverP.IPRouting -> IPRoutingP;
   TestDriverP.DoneSend -> Serial.AMSend[AM_TESTDRIVER_MSG];
+  TestDriverP.AckSend -> Serial.AMSend[AM_TESTDRIVER_ACK];
   TestDriverP.RadioControl -> IPDispatchC;
-  TestDriverP.MarkTimer -> Mark;
+#endif
+#ifdef DBG_FLOWS_REPORT
+  components TrackFlowsC;
 #endif
 }