FX3ConnectionTransfer Method |
This function performs a single bi-directional 32 bit SPI transaction. If DrActive is set to false the transfer is performed asynchronously. If DrActive is set to true,
the transfer should wait until a data ready condition (determined by DrPin and DrPolarity) is true.
Namespace:
FX3Api
Assembly:
FX3Api (in FX3Api.dll) Version: 2.9.4.0 (2.9.4)
Syntaxpublic uint Transfer(
uint WriteData
)
Public Function Transfer (
WriteData As UInteger
) As UInteger
public:
virtual unsigned int Transfer(
unsigned int WriteData
) sealed
abstract Transfer :
WriteData : uint32 -> uint32
override Transfer :
WriteData : uint32 -> uint32
Parameters
- WriteData
- Type: SystemUInt32
The 32 bit data to be send to the slave on the MOSI line
Return Value
Type:
UInt32The 32 bit data sent to the master over the MISO line during the SPI transaction
Implements
ISpi32Interface.Transfer(UInt32)
See Also