[Tinyos-2-commits] CVS: tinyos-2.x/tos/lib/net/4bitle
LinkEstimatorP.nc, 1.5, 1.6
Omprakash Gnawali
gnawali at users.sourceforge.net
Tue Jan 22 10:03:42 PST 2008
Update of /cvsroot/tinyos/tinyos-2.x/tos/lib/net/4bitle
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv6105
Modified Files:
LinkEstimatorP.nc
Log Message:
rename INFINITY, only send mature links on the footer
Index: LinkEstimatorP.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/tos/lib/net/4bitle/LinkEstimatorP.nc,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** LinkEstimatorP.nc 21 Dec 2007 04:36:42 -0000 1.5
--- LinkEstimatorP.nc 22 Jan 2008 18:03:40 -0000 1.6
***************
*** 68,72 ****
INVALID_RVAL = 0xff,
INVALID_NEIGHBOR_ADDR = 0xff,
! INFINITY = 0xff,
// decay the link estimate using this alpha
// we use a denominator of 10, so this corresponds to 0.2
--- 68,74 ----
INVALID_RVAL = 0xff,
INVALID_NEIGHBOR_ADDR = 0xff,
! // if we don't know the link quality, we need to return a value so
! // large that it will not be used to form paths
! VERY_LARGE_EETX_VALUE = 0xff,
// decay the link estimate using this alpha
// we use a denominator of 10, so this corresponds to 0.2
***************
*** 131,135 ****
for (i = 0; i < NEIGHBOR_TABLE_SIZE && j < maxEntries; i++) {
k = (prevSentIdx + i + 1) % NEIGHBOR_TABLE_SIZE;
! if (NeighborTable[k].flags & VALID_ENTRY) {
footer->neighborList[j].ll_addr = NeighborTable[k].ll_addr;
footer->neighborList[j].inquality = NeighborTable[k].inquality;
--- 133,138 ----
for (i = 0; i < NEIGHBOR_TABLE_SIZE && j < maxEntries; i++) {
k = (prevSentIdx + i + 1) % NEIGHBOR_TABLE_SIZE;
! if ((NeighborTable[k].flags & VALID_ENTRY) &&
! (NeighborTable[k].flags & MATURE_ENTRY)) {
footer->neighborList[j].ll_addr = NeighborTable[k].ll_addr;
footer->neighborList[j].inquality = NeighborTable[k].inquality;
***************
*** 296,304 ****
q = 2550 / q1 - 10;
if (q > 255) {
! q = INFINITY;
}
return (uint8_t)q;
} else {
! return INFINITY;
}
}
--- 299,307 ----
q = 2550 / q1 - 10;
if (q > 255) {
! q = VERY_LARGE_EETX_VALUE;
}
return (uint8_t)q;
} else {
! return VERY_LARGE_EETX_VALUE;
}
}
***************
*** 442,451 ****
idx = findIdx(neighbor);
if (idx == INVALID_RVAL) {
! return INFINITY;
} else {
if (NeighborTable[idx].flags & MATURE_ENTRY) {
return NeighborTable[idx].eetx;
} else {
! return INFINITY;
}
}
--- 445,454 ----
idx = findIdx(neighbor);
if (idx == INVALID_RVAL) {
! return VERY_LARGE_EETX_VALUE;
} else {
if (NeighborTable[idx].flags & MATURE_ENTRY) {
return NeighborTable[idx].eetx;
} else {
! return VERY_LARGE_EETX_VALUE;
}
}
More information about the Tinyos-2-commits
mailing list