X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=tos%2Fplatforms%2Fmulle%2Fsoftwarei2c%2FSoftwareI2C2C.nc;fp=tos%2Fplatforms%2Fmulle%2Fsoftwarei2c%2FSoftwareI2C2C.nc;h=5470e38937ea28facf9f661a171a49a8570f7f5d;hb=31ff2c2cf814676d013f819729ee17c1d26f2f29;hp=ec6a042bfeaeac34f99a761ccfadfb3d7a068635;hpb=f5c828d4d5ce088f8f5e8175d1203ed08343e781;p=tinyos-2.x.git diff --git a/tos/platforms/mulle/softwarei2c/SoftwareI2C2C.nc b/tos/platforms/mulle/softwarei2c/SoftwareI2C2C.nc index ec6a042b..5470e389 100755 --- a/tos/platforms/mulle/softwarei2c/SoftwareI2C2C.nc +++ b/tos/platforms/mulle/softwarei2c/SoftwareI2C2C.nc @@ -50,6 +50,7 @@ generic configuration SoftwareI2C2C() { provides interface Resource; provides interface I2CPacket; + 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; }