]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
alpha=9; bug fix for getlinkquality - return infinity if not a mature link
authorgnawali <gnawali>
Fri, 21 Dec 2007 04:36:42 +0000 (04:36 +0000)
committergnawali <gnawali>
Fri, 21 Dec 2007 04:36:42 +0000 (04:36 +0000)
tos/lib/net/4bitle/LinkEstimatorP.nc

index b35e1f4c2e4f789b1ac6eee444e856ab97a56bca..c428df1b0ce307b4034ddbea85c116941bbbbe0f 100644 (file)
@@ -70,7 +70,7 @@ implementation {
     INFINITY = 0xff,
     // decay the link estimate using this alpha
     // we use a denominator of 10, so this corresponds to 0.2
-    ALPHA = 2,
+    ALPHA = 9,
     // number of packets to wait before computing a new
     // DLQ (Data-driven Link Quality)
     DLQ_PKT_WINDOW = 5,
@@ -443,8 +443,12 @@ implementation {
     if (idx == INVALID_RVAL) {
       return INFINITY;
     } else {
-      return NeighborTable[idx].eetx;
-    };
+      if (NeighborTable[idx].flags & MATURE_ENTRY) {
+       return NeighborTable[idx].eetx;
+      } else {
+       return INFINITY;
+      }
+    }
   }
 
   // insert the neighbor at any cost (if there is a room for it)