]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/sensorboards/im2sb/HplSensirionSht11C.nc
Merge over into the trunk.
[tinyos-2.x.git] / tos / sensorboards / im2sb / HplSensirionSht11C.nc
index 94045358a8e2df36087ba76b31f45d225340d2e6..4cc85246ce7cee9bcf00bb7a3c873fa76b52a291 100644 (file)
@@ -43,7 +43,6 @@
 #include <im2sb.h>
 
 configuration HplSensirionSht11C {
-  provides interface Init;
   provides interface Resource[ uint8_t id ];
   provides interface GeneralIO as DATA;
   provides interface GeneralIO as SCK;
@@ -56,7 +55,6 @@ implementation {
   SCK = GeneralIOC.GeneralIO[GPIO_SHT11_CLK];
   InterruptDATA = GeneralIOC.GpioInterrupt[GPIO_SHT11_DATA];
 
-  components new FcfsArbiterC( "Sht11.Resource" ) as Arbiter;
-  Init = Arbiter;
+  components new SimpleFcfsArbiterC( "Sht11.Resource" ) as Arbiter;
   Resource = Arbiter;
 }