X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=tos%2Fplatforms%2Fepic%2FPlatformP.nc;h=acb3afbeecde83295ae0b66b9bc44be0b53133fd;hb=c6d9663aef7ea2f34323160158e0143cd38880cd;hp=582e665f73b3b34196fd4f3f8b4256eedccd7aed;hpb=daa2173bc13a30a1bc2e6e154d7a5c8013fd0b0d;p=tinyos-2.x.git diff --git a/tos/platforms/epic/PlatformP.nc b/tos/platforms/epic/PlatformP.nc index 582e665f..acb3afbe 100644 --- a/tos/platforms/epic/PlatformP.nc +++ b/tos/platforms/epic/PlatformP.nc @@ -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; }