]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/platforms/mulle/softwarei2c/SoftwareI2C2C.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 / softwarei2c / SoftwareI2C2C.nc
index ec6a042bfeaeac34f99a761ccfadfb3d7a068635..5470e38937ea28facf9f661a171a49a8570f7f5d 100755 (executable)
@@ -50,6 +50,7 @@ generic configuration SoftwareI2C2C()
 {
   provides interface Resource;
   provides interface I2CPacket<TI2CBasicAddr>;
+  provides interface ResourceDefaultOwner;
 }
 implementation
 {
@@ -61,4 +62,5 @@ implementation
   components SoftwareI2C2P as I2C; 
   Resource = I2C.Resource[CLIENT_ID];
   I2CPacket = I2C.I2CPacket[CLIENT_ID];
+  ResourceDefaultOwner = I2C;
 }