[Tinyos-2-commits] CVS: tinyos-2.x/tos/chips/msp430/usart Msp430SpiDma0P.nc, 1.1.2.5, 1.1.2.6 Msp430SpiDmaP.nc, 1.1.2.6, 1.1.2.7 Msp430SpiNoDmaP.nc, 1.1.2.7, 1.1.2.8

Jonathan Hui jwhui at users.sourceforge.net
Fri Oct 13 10:29:31 PDT 2006


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

Modified Files:
      Tag: tinyos-2_0_devel-BRANCH
	Msp430SpiDma0P.nc Msp430SpiDmaP.nc Msp430SpiNoDmaP.nc 
Log Message:

Remove debugging.



Index: Msp430SpiDma0P.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/tos/chips/msp430/usart/Msp430SpiDma0P.nc,v
retrieving revision 1.1.2.5
retrieving revision 1.1.2.6
diff -C2 -d -r1.1.2.5 -r1.1.2.6
*** Msp430SpiDma0P.nc	3 Aug 2006 18:10:41 -0000	1.1.2.5
--- Msp430SpiDma0P.nc	13 Oct 2006 17:29:29 -0000	1.1.2.6
***************
*** 38,42 ****
  
    provides interface Resource[ uint8_t id ];
!   provides interface ResourceControl [uint8_t id];
    provides interface SpiByte;
    provides interface SpiPacket[ uint8_t id ];
--- 38,42 ----
  
    provides interface Resource[ uint8_t id ];
!   provides interface ResourceConfigure[ uint8_t id ];
    provides interface SpiByte;
    provides interface SpiPacket[ uint8_t id ];
***************
*** 52,56 ****
    components new Msp430SpiDmaP() as SpiP;
    Resource = SpiP.Resource;
!   ResourceControl = SpiP.ResourceControl;
    Msp430SpiConfigure = SpiP.Msp430SpiConfigure;
    SpiByte = SpiP.SpiByte;
--- 52,56 ----
    components new Msp430SpiDmaP() as SpiP;
    Resource = SpiP.Resource;
!   ResourceConfigure = SpiP.ResourceConfigure;
    Msp430SpiConfigure = SpiP.Msp430SpiConfigure;
    SpiByte = SpiP.SpiByte;

Index: Msp430SpiDmaP.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/tos/chips/msp430/usart/Msp430SpiDmaP.nc,v
retrieving revision 1.1.2.6
retrieving revision 1.1.2.7
diff -C2 -d -r1.1.2.6 -r1.1.2.7
*** Msp430SpiDmaP.nc	28 Sep 2006 19:26:21 -0000	1.1.2.6
--- Msp430SpiDmaP.nc	13 Oct 2006 17:29:29 -0000	1.1.2.7
***************
*** 39,42 ****
--- 39,43 ----
  
    provides interface Resource[ uint8_t id ];
+   provides interface ResourceConfigure[ uint8_t id ];
    provides interface SpiByte;
    provides interface SpiPacket[ uint8_t id ];

Index: Msp430SpiNoDmaP.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/tos/chips/msp430/usart/Msp430SpiNoDmaP.nc,v
retrieving revision 1.1.2.7
retrieving revision 1.1.2.8
diff -C2 -d -r1.1.2.7 -r1.1.2.8
*** Msp430SpiNoDmaP.nc	13 Oct 2006 17:26:04 -0000	1.1.2.7
--- Msp430SpiNoDmaP.nc	13 Oct 2006 17:29:29 -0000	1.1.2.8
***************
*** 98,104 ****
      call Usart.disableRxIntr();
      call Usart.tx( tx );
-     TOSH_CLR_GREEN_LED_PIN();
      while( !call Usart.isRxIntrPending() );
-     TOSH_SET_GREEN_LED_PIN();
      byte = call Usart.rx();
      call Usart.enableRxIntr();
--- 98,102 ----



More information about the Tinyos-2-commits mailing list