]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/platforms/mulle/chips/rv8564/HplRV8564C.nc
Added support for pulling the SDA and SCL pins low on I2C 2 on Mulle when they are...
[tinyos-2.x.git] / tos / platforms / mulle / chips / rv8564 / HplRV8564C.nc
index 560576ade11c42874b885df8a8f04b6bc02a3dbb..0ebcdb98673d0b33ef30f707764248e614f60b7b 100755 (executable)
@@ -47,10 +47,11 @@ configuration HplRV8564C
 implementation
 {
   components HplRV8564P as RTCP,
-    new SoftwareI2C2C() as I2C,
-    HplM16c62pGeneralIOC as IOs,
-    HplM16c62pInterruptC as Irqs,
-    new M16c62pInterruptC() as Irq;
+             new SoftwareI2C2C() as I2C,
+             HplM16c62pGeneralIOC as IOs,
+             HplM16c62pInterruptC as Irqs,
+             new M16c62pInterruptC() as Irq,
+             BusyWaitMicroC;
 
   Irq.HplM16c62pInterrupt -> Irqs.Int0;
 
@@ -60,7 +61,9 @@ implementation
   RTCP.GpioInterrupt -> Irq;
   RTCP.I2C -> I2C;
   RTCP.I2CResource -> I2C;
+  RTCP.BusyWait -> BusyWaitMicroC;
 
-  components PlatformC;
+  components PlatformC, RealMainP;
   PlatformC.SubInit -> RTCP.Init;
+  RealMainP.SoftwareInit -> RTCP.Startup;
 }