]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/platforms/epic/PlatformP.nc
Deluge T2 support for Epic. This includes support for at45db161d and some refactoring...
[tinyos-2.x.git] / tos / platforms / epic / PlatformP.nc
index 582e665f73b3b34196fd4f3f8b4256eedccd7aed..acb3afbeecde83295ae0b66b9bc44be0b53133fd 100644 (file)
@@ -38,12 +38,14 @@ module PlatformP {
   }
   uses {
     interface Init as MoteClockInit;
+    interface Init as MoteInit;
     interface Init as LedsInit;
   }
 }
 implementation {
   command error_t Init.init() {
     call MoteClockInit.init();
+    call MoteInit.init();
     call LedsInit.init();
     return SUCCESS;
   }