]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/chips/msp430/timer/Msp430ClockC.nc
Msp430ClockC must pull in Msp430TimerC to attach the default Timer.overflow()
[tinyos-2.x.git] / tos / chips / msp430 / timer / Msp430ClockC.nc
index ec37861a102daeb778863254eabfd225d74ad136..9051fc4054b56bdd9c9626474c9555089f6b3c50 100644 (file)
@@ -30,7 +30,7 @@ generic configuration Msp430ClockC(uint16_t TARGET_DCO_KHZ, uint16_t ACLK_KHZ)
 }
 implementation
 {
-  components new Msp430ClockP(TARGET_DCO_KHZ, ACLK_KHZ);
+  components new Msp430ClockP(TARGET_DCO_KHZ, ACLK_KHZ), Msp430TimerC;
 
   Init = Msp430ClockP;
   Msp430ClockInit = Msp430ClockP;