FX3ConnectionStartI2CStream Method |
Start an asynchronous I2C read stream. This stream runs on the stream thread
and places all data in a thread safe queue. The data can be retrieved using
GetI2CBuffer()
Namespace:
FX3Api
Assembly:
FX3Api (in FX3Api.dll) Version: 2.9.4.0 (2.9.4)
Syntaxpublic void StartI2CStream(
I2CPreamble Preamble,
uint BytesPerRead,
uint numBuffers
)
Public Sub StartI2CStream (
Preamble As I2CPreamble,
BytesPerRead As UInteger,
numBuffers As UInteger
)
public:
void StartI2CStream(
I2CPreamble^ Preamble,
unsigned int BytesPerRead,
unsigned int numBuffers
)
member StartI2CStream :
Preamble : I2CPreamble *
BytesPerRead : uint32 *
numBuffers : uint32 -> unit
Parameters
- Preamble
- Type: FX3ApiI2CPreamble
The preamble to send at the start of the read - BytesPerRead
- Type: SystemUInt32
Number of read bytes following the preamble - numBuffers
- Type: SystemUInt32
Total number of separate I2C transactions to send
See Also