]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
use per-platform/per-clock-rate timer 0 threshold for selecting power save
authoridgay <idgay>
Fri, 11 Aug 2006 20:49:00 +0000 (20:49 +0000)
committeridgay <idgay>
Fri, 11 Aug 2006 20:49:00 +0000 (20:49 +0000)
vs ext standby

tos/chips/atm128/McuSleepC.nc

index 0ef6a496189b3d4494969a73390813797e273824..3f358a27a657e8b66a6b511c1ef41df3fe61a308 100644 (file)
@@ -48,7 +48,8 @@ module McuSleepC {
 }
 implementation {
   /* There is no dirty bit management because the sleep mode depends on
-     the amount of time remaining in timer0. */
+     the amount of time remaining in timer0. Note also that the
+     sleep cost depends typically depends on waiting for ASSR to clear. */
 
   /* Note that the power values are maintained in an order
    * based on their active components, NOT on their values.
@@ -90,12 +91,15 @@ implementation {
     }
     // How soon for the timer to go off?
     else if (TIMSK & (1 << OCIE0 | 1 << TOIE0)) {
-      // force waiting for timer0 update (overflow glitches otherwise)
-      TCCR0 = TCCR0;
+      // need to wait for timer 0 updates propagate before sleeping
+      // (we don't need to worry about reentering sleep mode too early,
+      // as the wake ups from timer0 wait at least one TOSC1 cycle
+      // anyway - see the stabiliseTimer0 function in HplAtm128Timer0AsyncC)
       while (ASSR & (1 << TCN0UB | 1 << OCR0UB | 1 << TCR0UB))
        ;
       diff = OCR0 - TCNT0;
-      if (diff < 16 || TCNT0 > 240) 
+      if (diff < EXT_STANDBY_T0_THRESHOLD ||
+         TCNT0 > 256 - EXT_STANDBY_T0_THRESHOLD) 
        return ATM128_POWER_EXT_STANDBY;
       return ATM128_POWER_SAVE;
     }