[Tinyos-2-commits] CVS: tinyos-2.x/tos/platforms/eyesIFX/chips/tda5250 Tda5250ASKNFSKFakePinP.nc, NONE, 1.1.2.1 Tda5250RadioIOC.nc, 1.1.2.2, 1.1.2.3

Philipp Huppertz phihup at users.sourceforge.net
Tue Sep 12 05:16:36 PDT 2006


Update of /cvsroot/tinyos/tinyos-2.x/tos/platforms/eyesIFX/chips/tda5250
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv11833/tos/platforms/eyesIFX/chips/tda5250

Modified Files:
      Tag: tinyos-2_0_devel-BRANCH
	Tda5250RadioIOC.nc 
Added Files:
      Tag: tinyos-2_0_devel-BRANCH
	Tda5250ASKNFSKFakePinP.nc 
Log Message:
- added Andreas Koepke's improvements and fixes to the tda5250 and /lib/byte_radio
- improved unconnected ASKNFSK pin handling/wireing on eyes

--- NEW FILE: Tda5250ASKNFSKFakePinP.nc ---
/*
* The ASKNFSK Pin is not connected on the eyes platforms...
*/

module Tda5250ASKNFSKFakePinP {
  provides interface	GeneralIO;
}

implementation {
  async command void GeneralIO.set(){}
  async command void GeneralIO.clr(){}
  async command void GeneralIO.toggle(){}
  async command bool GeneralIO.get(){ return FALSE; }
  async command void GeneralIO.makeInput(){}
  async command void GeneralIO.makeOutput(){}
}

Index: Tda5250RadioIOC.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/tos/platforms/eyesIFX/chips/tda5250/Tda5250RadioIOC.nc,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -C2 -d -r1.1.2.2 -r1.1.2.3
*** Tda5250RadioIOC.nc	31 Jan 2006 12:25:32 -0000	1.1.2.2
--- Tda5250RadioIOC.nc	12 Sep 2006 12:16:32 -0000	1.1.2.3
***************
*** 40,43 ****
--- 40,44 ----
  configuration Tda5250RadioIOC
  {
+   provides interface GeneralIO as Tda5250RadioPASKNFSK;
    provides interface GeneralIO as Tda5250RadioBUSM;
    provides interface GeneralIO as Tda5250RadioENTDA;
***************
*** 49,52 ****
--- 50,54 ----
    components
        HplMsp430GeneralIOC as MspGeneralIO
+     , Tda5250ASKNFSKFakePinP      
      , new Msp430GpioC() as rBUSM
      , new Msp430GpioC() as rENTDA
***************
*** 62,65 ****
--- 64,68 ----
    Tda5250RadioPWDDD = rPWDD;
  
+   Tda5250RadioPASKNFSK = Tda5250ASKNFSKFakePinP;
    rBUSM -> MspGeneralIO.Port15;
    rENTDA -> MspGeneralIO.Port16;



More information about the Tinyos-2-commits mailing list