]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/platforms/tmicore/MoteClockC.nc
Update the tmicore platform's clock initialization. If DCO constants are in
[tinyos-2.x.git] / tos / platforms / tmicore / MoteClockC.nc
index 2c125656af85ad030f26c82e0b84a46065813537..e838b5e5ef108de858cbc5369318b6ff61561b63 100644 (file)
  * @author R. Steve McKown <smckown@gmail.com>
  */
  
-#define MS430DCOSPEC_H
-#define TARGET_DCO_KHZ 8192 // the target DCO clock rate in binary kHz
-//#define TARGET_DCO_KHZ 4096 // the target DCO clock rate in binary kHz
-#define ACLK_KHZ 32 // the ACLK rate in binary kHz
-
 configuration MoteClockC {
   provides interface Init as MoteClockInit;
 }
@@ -49,5 +44,5 @@ implementation {
 
   components Msp430ClockC;
   MoteClockP.SubInit -> Msp430ClockC.Init;
-  //MoteClockP.Msp430ClockInit -> Msp430ClockC;
+  MoteClockP.Msp430ClockInit -> Msp430ClockC;
 }