Update of /cvsroot/firebug/fireboard/beta/fireworks/apps/MultihopLinkEstimator
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28174
Modified Files:
MultihopLinkEstimator.h MultihopLinkEstimator.nc
MultihopLinkEstimatorM.nc
Log Message:
More edits
Index: MultihopLinkEstimator.nc
===================================================================
RCS file: /cvsroot/firebug/fireboard/beta/fireworks/apps/MultihopLinkEstimator/MultihopLinkEstimator.nc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** MultihopLinkEstimator.nc 6 Aug 2005 21:54:20 -0000 1.1
--- MultihopLinkEstimator.nc 8 Aug 2005 17:14:20 -0000 1.2
***************
*** 73,78 ****
/* Additions for Link Estimation */
! multihopM.ReceiveMsg[AM_LEMSG] -> Comm.ReceiveMsg[AM_LEMSG];
! MultihopLinkEstimatorM.SendLinkEstimate -> multihopM.Send[AM_LEMSG];
MultihopLinkEstimatorM.ReceivePing -> Comm.ReceiveMsg[AM_PINGMSG];
--- 73,78 ----
/* Additions for Link Estimation */
! multihopM.ReceiveMsg[AM_LEMSG] -> Comm.ReceiveMsg[AM_LINKESTIMATORMSG];
! MultihopLinkEstimatorM.SendLinkEstimate -> multihopM.Send[AM_LINKESTIMATORMSG];
MultihopLinkEstimatorM.ReceivePing -> Comm.ReceiveMsg[AM_PINGMSG];
Index: MultihopLinkEstimatorM.nc
===================================================================
RCS file: /cvsroot/firebug/fireboard/beta/fireworks/apps/MultihopLinkEstimator/MultihopLinkEstimatorM.nc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** MultihopLinkEstimatorM.nc 6 Aug 2005 21:54:20 -0000 1.1
--- MultihopLinkEstimatorM.nc 8 Aug 2005 17:14:20 -0000 1.2
***************
*** 151,155 ****
leSendBusy = TRUE;
if((call SendLinkEstimate.send(&leMsg, sizeof(LinkEstimatorMsg))) != SUCCESS) {
! leSendBusy = FALSE;
}
}
--- 151,155 ----
leSendBusy = TRUE;
if((call SendLinkEstimate.send(&leMsg, sizeof(LinkEstimatorMsg))) != SUCCESS) {
! atomic leSendBusy = FALSE;
}
}
Index: MultihopLinkEstimator.h
===================================================================
RCS file: /cvsroot/firebug/fireboard/beta/fireworks/apps/MultihopLinkEstimator/MultihopLinkEstimator.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** MultihopLinkEstimator.h 6 Aug 2005 21:54:20 -0000 1.1
--- MultihopLinkEstimator.h 8 Aug 2005 17:14:13 -0000 1.2
***************
*** 70,74 ****
enum {
AM_SURGEMSG = 17,
! AM_LEMSG = 18,
AM_PINGMSG = 19
};
--- 70,74 ----
enum {
AM_SURGEMSG = 17,
! AM_LINKESTIMATORMSG = 18,
AM_PINGMSG = 19
};
|