X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=apps%2Ftests%2FTestNetwork%2FTestNetworkAppC.nc;h=337b8d2e7629e87003be334420b3cac5969cf62b;hb=e9bfab607e051bae6afb47b44892ce37541d1b44;hp=b64adf2d82814a542922630a24a4b4a7a01aa18b;hpb=2ebde5ad3e4a5a1ef846b5b75bf715f5a4d8afcc;p=tinyos-2.x.git diff --git a/apps/tests/TestNetwork/TestNetworkAppC.nc b/apps/tests/TestNetwork/TestNetworkAppC.nc index b64adf2d..337b8d2e 100644 --- a/apps/tests/TestNetwork/TestNetworkAppC.nc +++ b/apps/tests/TestNetwork/TestNetworkAppC.nc @@ -17,7 +17,7 @@ configuration TestNetworkAppC {} implementation { components TestNetworkC, MainC, LedsC, ActiveMessageC; components DisseminationC; - components new DisseminatorC(uint16_t, SAMPLE_RATE_KEY) as Object16C; + components new DisseminatorC(uint32_t, SAMPLE_RATE_KEY) as Object32C; components CollectionC as Collector; components new CollectionSenderC(CL_TEST); components new TimerMilliC(); @@ -39,7 +39,7 @@ implementation { TestNetworkC.DisseminationControl -> DisseminationC; TestNetworkC.Leds -> LedsC; TestNetworkC.Timer -> TimerMilliC; - TestNetworkC.DisseminationPeriod -> Object16C; + TestNetworkC.DisseminationPeriod -> Object32C; TestNetworkC.Send -> CollectionSenderC; TestNetworkC.ReadSensor -> DemoSensorC; TestNetworkC.RootControl -> Collector;