]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
Removed tabs.
authorr-studio <r-studio>
Thu, 22 Apr 2010 07:27:05 +0000 (07:27 +0000)
committerr-studio <r-studio>
Thu, 22 Apr 2010 07:27:05 +0000 (07:27 +0000)
tos/platforms/mulle/PlatformC.nc
tos/platforms/mulle/PlatformP.nc

index 11285d094f3a0c4dff2ec3e8c924ae67d9776bb3..82ef77ce31f9417993f8f7996f03f4b85c06a219 100755 (executable)
@@ -41,7 +41,7 @@
  */
 
 #include "hardware.h"
-#
+
 configuration PlatformC
 {
   provides interface Init;
index 67daed97e2802aa5379bc68085721867e47217d5..1a467ddd63dc85c7254dd3bbdf3dd8fa6a2c1aba 100755 (executable)
@@ -51,7 +51,7 @@ module PlatformP
   uses interface StopModeControl;
 #ifdef ENABLE_STOP_MODE
   provides interface Init as StopModeInit;
-  
+
   uses interface HplRV8564 as RTC;
   uses interface HplDS2782;
   uses interface StdControl as DS2782Control;
@@ -80,14 +80,14 @@ implementation
 
 #ifdef ENABLE_STOP_MODE
   task void enableStopMode();
-  
+
   command error_t StopModeInit.init()
   {
-       // The task is needed so we can be sure that all underlying components 
+    // The task is needed so we can be sure that all underlying components 
     // have been initialized, for example the I2C resource.
-       post enableStopMode();
+    post enableStopMode();
   }
-  
+
   task void enableStopMode()
   {
     call StopModeControl.allowStopMode(true);
@@ -98,7 +98,7 @@ implementation
     call RTC.enableCLKOUT();
     call RTC.writeRegister(RV8564_CLKF, 0x81);  
   }
-  
+
   task void stopDS2782()
   {
     call DS2782Control.stop();