]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
Msp430ClockC must pull in Msp430TimerC to attach the default Timer.overflow()
authorsmckown <smckown@4bc1554a-c7f2-4f65-a403-e0be01f0239c>
Fri, 12 Sep 2008 18:53:58 +0000 (18:53 +0000)
committerR. Steve McKown <rsmckown@gmail.com>
Tue, 1 Dec 2009 03:00:58 +0000 (20:00 -0700)
for both Timers A and B.  This was inadvertently removed recently not realizing
its importance.

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;