[Tinyos-contrib-commits]
CVS: tinyos-1.x/contrib/wustl/apps/Agilla/components
ResetMgrC.nc, 1.7, 1.8 ResetMgrM.nc, 1.5, 1.6
Chien-Liang Fok
chien-liang at users.sourceforge.net
Wed Apr 5 11:05:13 PDT 2006
Update of /cvsroot/tinyos/tinyos-1.x/contrib/wustl/apps/Agilla/components
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv942/components
Modified Files:
ResetMgrC.nc ResetMgrM.nc
Log Message:
Index: ResetMgrC.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-1.x/contrib/wustl/apps/Agilla/components/ResetMgrC.nc,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** ResetMgrC.nc 12 Feb 2006 07:11:21 -0000 1.7
--- ResetMgrC.nc 5 Apr 2006 18:04:38 -0000 1.8
***************
*** 57,60 ****
--- 57,64 ----
components MessageBufferM, LedsC;
+ #if ENABLE_EXP_LOGGING
+ components ExpLoggerC;
+ #endif
+
StdControl = ResetMgrM;
StdControl = LEDBlinkerC;
***************
*** 71,74 ****
--- 75,82 ----
ResetMgrM.LEDBlinkerI -> LEDBlinkerC;
ResetMgrM.MessageBufferI -> MessageBufferM;
+
+ #if ENABLE_EXP_LOGGING
+ ResetMgrM.ExpLoggerI -> ExpLoggerC;
+ #endif
ResetMgrM.Leds -> LedsC;
}
Index: ResetMgrM.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-1.x/contrib/wustl/apps/Agilla/components/ResetMgrM.nc,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** ResetMgrM.nc 12 Feb 2006 07:11:21 -0000 1.5
--- ResetMgrM.nc 5 Apr 2006 18:04:38 -0000 1.6
***************
*** 60,64 ****
interface SendMsg as SendReset;
interface MessageBufferI;
! interface Leds;
}
}
--- 60,69 ----
interface SendMsg as SendReset;
interface MessageBufferI;
!
! #if ENABLE_EXP_LOGGING
! interface ExpLoggerI;
! #endif
!
! interface Leds;
}
}
***************
*** 169,172 ****
--- 174,182 ----
call Leds.yellowOff();
call Leds.greenOff();
+
+ #if ENABLE_EXP_LOGGING
+ call ExpLoggerI.reset();
+ #endif
+
resetting = FALSE;
}
More information about the Tinyos-contrib-commits
mailing list