]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/platforms/epic/MotePlatformC.nc
sneak in eui-64 driver for epic. this is a tiny amount of code :)
[tinyos-2.x.git] / tos / platforms / epic / MotePlatformC.nc
index 5636b321bc3b84fdec4f4e0f4030e2b961a12fe2..43ea3fbe3afd77750b14d2d6f81c6d49db0ab49d 100644 (file)
@@ -1,5 +1,6 @@
 module MotePlatformC @safe() {
   provides interface Init;
+  uses interface Init as SubInit;
 }
 implementation {
 
@@ -40,6 +41,8 @@ implementation {
        // directions using the TOSH_SET/CLR macros
 
       }//atomic
-    return SUCCESS;
+    return call SubInit.init();
   }
+
+ default command error_t SubInit.init() { return SUCCESS; }
 }