X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=tos%2Fplatforms%2Fmulle%2FPlatformP.nc;h=733d112f452dfd66688a9972f2f37b5e11e00f08;hb=3a993e16707c4fde0d1df1f2826205563ca980e1;hp=c4025efbacc3a96614aff201167638a1076a0947;hpb=e3b86016fda95d4e54e2909f05dba41ca8461e16;p=tinyos-2.x.git diff --git a/tos/platforms/mulle/PlatformP.nc b/tos/platforms/mulle/PlatformP.nc index c4025efb..733d112f 100755 --- a/tos/platforms/mulle/PlatformP.nc +++ b/tos/platforms/mulle/PlatformP.nc @@ -65,6 +65,7 @@ implementation call StopModeControl.allowStopMode(true); // Activate the RTC and set it to output 1024 tics on the CLKOUT pin. call RTC.on(); + call RTC.enableCLKOUT(); call RTC.writeRegister(RV8564_CLKF, 0x81); #else call StopModeControl.allowStopMode(false); @@ -79,5 +80,7 @@ implementation } #ifdef ENABLE_STOP_MODE async event void RTC.fired() {} + async event void RTC.readRegisterDone(uint8_t val, uint8_t reg) {} + async event void RTC.writeRegisterDone(uint8_t reg) {} #endif }