]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/platforms/mulle/PlatformSerialC.nc
nativ tos PrintF support, demosensors based on accelerometer, better low power
[tinyos-2.x.git] / tos / platforms / mulle / PlatformSerialC.nc
index 452c272e429188f3d502bae56afb5bfa3269ffb3..2b3cf7c65acc12f169575ac61044cbcea9ece5c5 100755 (executable)
@@ -50,12 +50,17 @@ configuration PlatformSerialC {
 implementation {
 
   components M16c62pUartC as Uart,
-      CounterMicro16C;
+      PlatformSerialP, CounterMicro16C;
       
-  StdControl = Uart.StdControl1;
+  StdControl = PlatformSerialP;
+  PlatformSerialP -> Uart.Uart1Control;
   UartStream = Uart.Uart1Stream;
   UartByte = Uart.Uart1Byte;
   
   Uart.Counter -> CounterMicro16C;
   
+  components MainC;
+  
+  MainC.SoftwareInit -> PlatformSerialP;
+  
 }