[Tinyos-2-commits] CVS: tinyos-2.x/tos/chips/pxa27x/ssp
HalPXA27xPSPDMAC.nc, NONE, 1.1.2.1 HalPXA27xPSPPioC.nc, NONE,
1.1.2.1 HalPXA27xSSPDMAC.nc, NONE, 1.1.2.1 HalPXA27xSSPPioC.nc,
NONE, 1.1.2.1 HalPXA27xSpiDMAC.nc, NONE,
1.1.2.1 HalPXA27xuWireDMAC.nc, NONE,
1.1.2.1 HalPXA27xuWirePioC.nc, NONE,
1.1.2.1 HalPXA27xSpiPioC.nc, 1.1.2.1, 1.1.2.2 HplPXA27xSSPP.nc,
1.1.2.3, 1.1.2.4
Philip Buonadonna
philipb at users.sourceforge.net
Mon Jul 17 12:45:00 PDT 2006
- Previous message: [Tinyos-2-commits] CVS: tinyos-2.x/tos/sensorboards/im2sb
MAX136xInternalP.nc, 1.1.2.1, 1.1.2.2
- Next message: [Tinyos-2-commits] CVS: tinyos-2.x/tos/chips/pxa27x/ssp
HalPXA27xPSPDMAC.nc, 1.1.2.1, 1.1.2.2 HalPXA27xSSPDMAC.nc,
1.1.2.1, 1.1.2.2 HalPXA27xSpiDMAC.nc, 1.1.2.1,
1.1.2.2 HalPXA27xuWireDMAC.nc, 1.1.2.1,
1.1.2.2 HplPXA27xSSPP.nc, 1.1.2.4, 1.1.2.5
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/tinyos/tinyos-2.x/tos/chips/pxa27x/ssp
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv26633
Modified Files:
Tag: tinyos-2_0_devel-BRANCH
HalPXA27xSpiPioC.nc HplPXA27xSSPP.nc
Added Files:
Tag: tinyos-2_0_devel-BRANCH
HalPXA27xPSPDMAC.nc HalPXA27xPSPPioC.nc HalPXA27xSSPDMAC.nc
HalPXA27xSSPPioC.nc HalPXA27xSpiDMAC.nc HalPXA27xuWireDMAC.nc
HalPXA27xuWirePioC.nc
Log Message:
Added/updated components IAW SSP Spec
--- NEW FILE: HalPXA27xPSPDMAC.nc ---
/*
* Copyright (c) 2005 Arch Rock Corporation
* All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of the Arch Rock Corporation nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ARCHED
* ROCK OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*/
/**
*
*
* @author Kaisen Lin
* @author Phil Buonadonna
*/
generic configuration HalPXA27xSpiDMAC(uint8_t valSCR,
uint8_t valDSS,
bool enableRWOT)
{
provides interface Init;
provides interface SpiByte;
provides interface SpiPacket[uint8_t instance];
provides interface HalPXA27xSSPCntl;
uses {
interface HplPXA27xSSP as SSP;
interface HplPXA27xDMAChnl as RxDMA;
interface HplPXA27xDMAChnl as TxDMA;
interface HplPXA27xDMAInfo as SSPRxDMAInfo;
interface HplPXA27xDMAInfo as SSPTxDMAInfo;
}
}
implementation {
components new HalPXA27xSpiDMAM(3, valSCR, valDSS, enableRWOT);
components HalPXA27xSSPControlP;
Init = HalPXA27xSpiPioM;
SpiByte = HalPXA27xSpiPioM;
SpiPacket = HalPXA27xSpiPioM;
HalPXA27xSSPCntl = HalPXA27xSSPControlP;
SSP = HalPXA27xSpiPioM;
SSP = HalPXA27xSSPControlP;
RxDMA = HalPXA27xSpiDMAM;
TxDMA = HalPXA27xSpiDMAM;
SSPRxDMAInfo = HalPXA27xSpiDMAM;
SSPTxDMAInfo = HalPXA27xSpiDMAM;
}
--- NEW FILE: HalPXA27xPSPPioC.nc ---
/*
* Copyright (c) 2005 Arch Rock Corporation
* All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of the Arch Rock Corporation nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ARCHED
* ROCK OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*/
/**
*
*
* @author Kaisen Lin
* @author Phil Buonadonna
*/
generic configuration HalPXA27xSpiPioC(uint8_t valSCR,
uint8_t valDSS,
bool enableRWOT)
{
provides interface Init;
provides interface SpiByte;
provides interface SpiPacket[uint8_t instance];
provides interface HalPXA27xSSPCntl;
uses interface HplPXA27xSSP as SSP;
}
implementation {
components new HalPXA27xSpiPioM(3, valSCR, valDSS, enableRWOT);
components HalPXA27xSSPControlP;
Init = HalPXA27xSpiPioM;
SpiByte = HalPXA27xSpiPioM;
SpiPacket = HalPXA27xSpiPioM;
HalPXA27xSSPCntl = HalPXA27xSSPControlP;
SSP = HalPXA27xSpiPioM;
SSP = HalPXA27xSSPControlP;
}
--- NEW FILE: HalPXA27xSSPDMAC.nc ---
/*
* Copyright (c) 2005 Arch Rock Corporation
* All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of the Arch Rock Corporation nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ARCHED
* ROCK OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*/
/**
*
*
* @author Kaisen Lin
* @author Phil Buonadonna
*/
generic configuration HalPXA27xSpiDMAC(uint8_t valSCR,
uint8_t valDSS,
bool enableRWOT)
{
provides interface Init;
provides interface SpiByte;
provides interface SpiPacket[uint8_t instance];
provides interface HalPXA27xSSPCntl;
uses {
interface HplPXA27xSSP as SSP;
interface HplPXA27xDMAChnl as RxDMA;
interface HplPXA27xDMAChnl as TxDMA;
interface HplPXA27xDMAInfo as SSPRxDMAInfo;
interface HplPXA27xDMAInfo as SSPTxDMAInfo;
}
}
implementation {
components new HalPXA27xSpiDMAM(1, valSCR, valDSS, enableRWOT);
components HalPXA27xSSPControlP;
Init = HalPXA27xSpiPioM;
SpiByte = HalPXA27xSpiPioM;
SpiPacket = HalPXA27xSpiPioM;
HalPXA27xSSPCntl = HalPXA27xSSPControlP;
SSP = HalPXA27xSpiPioM;
SSP = HalPXA27xSSPControlP;
RxDMA = HalPXA27xSpiDMAM;
TxDMA = HalPXA27xSpiDMAM;
SSPRxDMAInfo = HalPXA27xSpiDMAM;
SSPTxDMAInfo = HalPXA27xSpiDMAM;
}
--- NEW FILE: HalPXA27xSSPPioC.nc ---
/*
* Copyright (c) 2005 Arch Rock Corporation
* All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of the Arch Rock Corporation nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ARCHED
* ROCK OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*/
/**
*
*
* @author Kaisen Lin
* @author Phil Buonadonna
*/
generic configuration HalPXA27xSpiPioC(uint8_t valSCR,
uint8_t valDSS,
bool enableRWOT)
{
provides interface Init;
provides interface SpiByte;
provides interface SpiPacket[uint8_t instance];
provides interface HalPXA27xSSPCntl;
uses interface HplPXA27xSSP as SSP;
}
implementation {
components new HalPXA27xSpiPioM(1, valSCR, valDSS, enableRWOT);
components HalPXA27xSSPControlP;
Init = HalPXA27xSpiPioM;
SpiByte = HalPXA27xSpiPioM;
SpiPacket = HalPXA27xSpiPioM;
HalPXA27xSSPCntl = HalPXA27xSSPControlP;
SSP = HalPXA27xSpiPioM;
SSP = HalPXA27xSSPControlP;
}
--- NEW FILE: HalPXA27xSpiDMAC.nc ---
/*
* Copyright (c) 2005 Arch Rock Corporation
* All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of the Arch Rock Corporation nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ARCHED
* ROCK OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*/
/**
*
*
* @author Kaisen Lin
* @author Phil Buonadonna
*/
generic configuration HalPXA27xSpiDMAC(uint8_t valSCR,
uint8_t valDSS,
bool enableRWOT)
{
provides interface Init;
provides interface SpiByte;
provides interface SpiPacket[uint8_t instance];
provides interface HalPXA27xSSPCntl;
uses {
interface HplPXA27xSSP as SSP;
interface HplPXA27xDMAChnl as RxDMA;
interface HplPXA27xDMAChnl as TxDMA;
interface HplPXA27xDMAInfo as SSPRxDMAInfo;
interface HplPXA27xDMAInfo as SSPTxDMAInfo;
}
}
implementation {
components new HalPXA27xSpiDMAM(0, valSCR, valDSS, enableRWOT);
components HalPXA27xSSPControlP;
Init = HalPXA27xSpiPioM;
SpiByte = HalPXA27xSpiPioM;
SpiPacket = HalPXA27xSpiPioM;
HalPXA27xSSPCntl = HalPXA27xSSPControlP;
SSP = HalPXA27xSpiPioM;
SSP = HalPXA27xSSPControlP;
RxDMA = HalPXA27xSpiDMAM;
TxDMA = HalPXA27xSpiDMAM;
SSPRxDMAInfo = HalPXA27xSpiDMAM;
SSPTxDMAInfo = HalPXA27xSpiDMAM;
}
--- NEW FILE: HalPXA27xuWireDMAC.nc ---
/*
* Copyright (c) 2005 Arch Rock Corporation
* All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of the Arch Rock Corporation nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ARCHED
* ROCK OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*/
/**
*
*
* @author Kaisen Lin
* @author Phil Buonadonna
*/
generic configuration HalPXA27xSpiDMAC(uint8_t valSCR,
uint8_t valDSS,
bool enableRWOT)
{
provides interface Init;
provides interface SpiByte;
provides interface SpiPacket[uint8_t instance];
provides interface HalPXA27xSSPCntl;
uses {
interface HplPXA27xSSP as SSP;
interface HplPXA27xDMAChnl as RxDMA;
interface HplPXA27xDMAChnl as TxDMA;
interface HplPXA27xDMAInfo as SSPRxDMAInfo;
interface HplPXA27xDMAInfo as SSPTxDMAInfo;
}
}
implementation {
components new HalPXA27xSpiDMAM(2, valSCR, valDSS, enableRWOT);
components HalPXA27xSSPControlP;
Init = HalPXA27xSpiPioM;
SpiByte = HalPXA27xSpiPioM;
SpiPacket = HalPXA27xSpiPioM;
HalPXA27xSSPCntl = HalPXA27xSSPControlP;
SSP = HalPXA27xSpiPioM;
SSP = HalPXA27xSSPControlP;
RxDMA = HalPXA27xSpiDMAM;
TxDMA = HalPXA27xSpiDMAM;
SSPRxDMAInfo = HalPXA27xSpiDMAM;
SSPTxDMAInfo = HalPXA27xSpiDMAM;
}
--- NEW FILE: HalPXA27xuWirePioC.nc ---
/*
* Copyright (c) 2005 Arch Rock Corporation
* All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of the Arch Rock Corporation nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ARCHED
* ROCK OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*/
/**
*
*
* @author Kaisen Lin
* @author Phil Buonadonna
*/
generic configuration HalPXA27xSpiPioC(uint8_t valSCR,
uint8_t valDSS,
bool enableRWOT)
{
provides interface Init;
provides interface SpiByte;
provides interface SpiPacket[uint8_t instance];
provides interface HalPXA27xSSPCntl;
uses interface HplPXA27xSSP as SSP;
}
implementation {
components new HalPXA27xSpiPioM(2, valSCR, valDSS, enableRWOT);
components HalPXA27xSSPControlP;
Init = HalPXA27xSpiPioM;
SpiByte = HalPXA27xSpiPioM;
SpiPacket = HalPXA27xSpiPioM;
HalPXA27xSSPCntl = HalPXA27xSSPControlP;
SSP = HalPXA27xSpiPioM;
SSP = HalPXA27xSSPControlP;
}
Index: HalPXA27xSpiPioC.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/tos/chips/pxa27x/ssp/HalPXA27xSpiPioC.nc,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -d -r1.1.2.1 -r1.1.2.2
*** HalPXA27xSpiPioC.nc 11 Jul 2006 23:26:16 -0000 1.1.2.1
--- HalPXA27xSpiPioC.nc 17 Jul 2006 19:44:58 -0000 1.1.2.2
***************
*** 35,40 ****
*/
! generic configuration HalPXA27xSpiPioC(uint8_t valFRF,
! uint8_t valSCR,
uint8_t valDSS,
bool enableRWOT)
--- 35,39 ----
*/
! generic configuration HalPXA27xSpiPioC(uint8_t valSCR,
uint8_t valDSS,
bool enableRWOT)
***************
*** 49,53 ****
implementation {
! components new HalPXA27xSpiPioM(valFRF, valSCR, valDSS, enableRWOT);
components HalPXA27xSSPControlP;
--- 48,52 ----
implementation {
! components new HalPXA27xSpiPioM(0, valSCR, valDSS, enableRWOT);
components HalPXA27xSSPControlP;
Index: HplPXA27xSSPP.nc
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/tos/chips/pxa27x/ssp/HplPXA27xSSPP.nc,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -C2 -d -r1.1.2.3 -r1.1.2.4
*** HplPXA27xSSPP.nc 14 Jul 2006 16:28:23 -0000 1.1.2.3
--- HplPXA27xSSPP.nc 17 Jul 2006 19:44:58 -0000 1.1.2.4
***************
*** 275,279 ****
default async event void HplPXA27xSSP.interruptSSP[uint8_t chnl]() {
! #warning "HplPXA27xSSP default event handler is empty."
return;
}
--- 275,280 ----
default async event void HplPXA27xSSP.interruptSSP[uint8_t chnl]() {
! call SSP.setSSSR(SSSR_BCE | SSSR_TUR | SSSR_EOC | SSSR_TINT |
! SSSR_PINT | SSSR_ROR );
return;
}
- Previous message: [Tinyos-2-commits] CVS: tinyos-2.x/tos/sensorboards/im2sb
MAX136xInternalP.nc, 1.1.2.1, 1.1.2.2
- Next message: [Tinyos-2-commits] CVS: tinyos-2.x/tos/chips/pxa27x/ssp
HalPXA27xPSPDMAC.nc, 1.1.2.1, 1.1.2.2 HalPXA27xSSPDMAC.nc,
1.1.2.1, 1.1.2.2 HalPXA27xSpiDMAC.nc, 1.1.2.1,
1.1.2.2 HalPXA27xuWireDMAC.nc, 1.1.2.1,
1.1.2.2 HplPXA27xSSPP.nc, 1.1.2.4, 1.1.2.5
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Tinyos-2-commits
mailing list