From: vlahan Date: Tue, 13 Mar 2007 17:57:46 +0000 (+0000) Subject: Quick and dirty solution for the uninitialized timers problem (after the removal... X-Git-Tag: tinyos/2.0.1~139 X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=commitdiff_plain;h=b43bab1fb2450c1ef3d550136c3aa7e55f251f91;p=tinyos-2.x.git Quick and dirty solution for the uninitialized timers problem (after the removal of the periodic calibration components) leading to high Null app consumption. The initialization needs to be restructured to handle this properly... --- diff --git a/tos/chips/msp430/timer/Msp430ClockC.nc b/tos/chips/msp430/timer/Msp430ClockC.nc index ecbb629c..5249fbe0 100644 --- a/tos/chips/msp430/timer/Msp430ClockC.nc +++ b/tos/chips/msp430/timer/Msp430ClockC.nc @@ -30,7 +30,7 @@ configuration Msp430ClockC } implementation { - components Msp430ClockP; + components Msp430ClockP, Msp430TimerC; Init = Msp430ClockP; Msp430ClockInit = Msp430ClockP;