[Tinyos-2-commits] CVS: tinyos-2.x/tos/chips/msp430/usart Msp430Uart0C.nc, 1.1.4.2, 1.1.4.3 Msp430Uart0P.nc, 1.1.4.2, 1.1.4.3

Vlado Handziski vlahan at users.sourceforge.net
Fri Oct 13 13:05:46 PDT 2006


Update of /cvsroot/tinyos/tinyos-2.x/tos/chips/msp430/usart
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv19864/tos/chips/msp430/usart

Modified Files:
      Tag: tinyos-2_0_devel-BRANCH
	Msp430Uart0C.nc Msp430Uart0P.nc 
Log Message:
Forgoten SerialByteComm to UartStream/UartByte change

Index: Msp430Uart0C.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/tos/chips/msp430/usart/Attic/Msp430Uart0C.nc,v
retrieving revision 1.1.4.2
retrieving revision 1.1.4.3
diff -C2 -d -r1.1.4.2 -r1.1.4.3
*** Msp430Uart0C.nc	3 Aug 2006 18:10:41 -0000	1.1.4.2
--- Msp430Uart0C.nc	13 Oct 2006 20:05:43 -0000	1.1.4.3
***************
*** 42,46 ****
  
    provides interface Resource;
!   provides interface SerialByteComm;
    provides interface Msp430UartControl as UartControl;
  
--- 42,47 ----
  
    provides interface Resource;
!   provides interface UartStream;
!   provides interface UartByte;
    provides interface Msp430UartControl as UartControl;
  
***************
*** 56,60 ****
    components Msp430Uart0P as UartP;
    Resource = UartP.Resource[ CLIENT_ID ];
!   SerialByteComm = UartP.SerialByteComm;
    UartControl = UartP.UartControl[ CLIENT_ID ];
    Msp430UartConfigure = UartP.Msp430UartConfigure[ CLIENT_ID ];
--- 57,62 ----
    components Msp430Uart0P as UartP;
    Resource = UartP.Resource[ CLIENT_ID ];
!   UartStream = UartP.UartStream;
!   UartByte = UartP.UartByte;
    UartControl = UartP.UartControl[ CLIENT_ID ];
    Msp430UartConfigure = UartP.Msp430UartConfigure[ CLIENT_ID ];

Index: Msp430Uart0P.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/tos/chips/msp430/usart/Attic/Msp430Uart0P.nc,v
retrieving revision 1.1.4.2
retrieving revision 1.1.4.3
diff -C2 -d -r1.1.4.2 -r1.1.4.3
*** Msp430Uart0P.nc	3 Aug 2006 18:10:41 -0000	1.1.4.2
--- Msp430Uart0P.nc	13 Oct 2006 20:05:43 -0000	1.1.4.3
***************
*** 41,45 ****
    provides interface ResourceConfigure[uint8_t id ];
    provides interface Msp430UartControl as UartControl[ uint8_t id ];
!   provides interface SerialByteComm;
  
    uses interface Resource as UsartResource[ uint8_t id ];
--- 41,46 ----
    provides interface ResourceConfigure[uint8_t id ];
    provides interface Msp430UartControl as UartControl[ uint8_t id ];
!   provides interface UartStream;
!   provides interface UartByte;
  
    uses interface Resource as UsartResource[ uint8_t id ];
***************
*** 56,60 ****
    Msp430UartConfigure = UartP.Msp430UartConfigure;
    UartControl = UartP.UartControl;
!   SerialByteComm = UartP.SerialByteComm;
    UsartResource = UartP.UsartResource;
    UsartInterrupts = UartP.UsartInterrupts;
--- 57,62 ----
    Msp430UartConfigure = UartP.Msp430UartConfigure;
    UartControl = UartP.UartControl;
!   UartStream = UartP.UartStream;
!   UartByte = UartP.UartByte;
    UsartResource = UartP.UsartResource;
    UsartInterrupts = UartP.UsartInterrupts;
***************
*** 63,66 ****
--- 65,71 ----
    UartP.Usart -> UsartC;
  
+   components Counter32khzC as CounterC;
+   UartP.Counter -> CounterC;
+ 
    components LedsC as Leds;
    UartP.Leds -> Leds;



More information about the Tinyos-2-commits mailing list