]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/chips/msp430/timer/Msp430Counter32khzC.nc
Merge over into the trunk.
[tinyos-2.x.git] / tos / chips / msp430 / timer / Msp430Counter32khzC.nc
index 14fe3812e78ffa8fcfd9da9572c65d9fea94ae79..3d72f726f6155c19252c7fa09140066cec2ed233 100644 (file)
  *          intended use.
  */
 
-#include "Timer.h"
-
 configuration Msp430Counter32khzC
 {
   provides interface Counter<T32khz,uint16_t> as Msp430Counter32khz;
 }
 implementation
 {
-  components Msp430TimerC
-           , new Msp430CounterC(T32khz) as Counter
-           ;
+  components Msp430TimerC;
+  components new Msp430CounterC(T32khz) as Counter;
 
   Msp430Counter32khz = Counter;
   Counter.Msp430Timer -> Msp430TimerC.TimerB;