IAnt ChannelSend Ext Burst Transfer Async Method
Sends the given data as an extended burst transmission. Returns: 0=fail, 1=pass, 2=timeout, 3=cancelled
Definition
Namespace: SmallEarthTech.AntRadioInterface
Assembly: SmallEarthTech.AntRadioInterface (in SmallEarthTech.AntRadioInterface.dll) Version: 5.0.2+3bc433b476ad11fc6896cfd0bd783d60504dc315
0=fail, 1=pass, 2=timeout, 3=cancelled
Assembly: SmallEarthTech.AntRadioInterface (in SmallEarthTech.AntRadioInterface.dll) Version: 5.0.2+3bc433b476ad11fc6896cfd0bd783d60504dc315
C#
Task<MessagingReturnCode> SendExtBurstTransferAsync(
ChannelId channelId,
byte[] data,
uint completeWaitTime
)VB
Function SendExtBurstTransferAsync (
channelId As ChannelId,
data As Byte(),
completeWaitTime As UInteger
) As Task(Of MessagingReturnCode)C++
Task<MessagingReturnCode>^ SendExtBurstTransferAsync(
ChannelId^ channelId,
array<unsigned char>^ data,
unsigned int completeWaitTime
)F#
abstract SendExtBurstTransferAsync :
channelId : ChannelId *
data : byte[] *
completeWaitTime : uint32 -> Task<MessagingReturnCode> Parameters
- channelId ChannelId
- Channel ID assigned to a device
- data Byte
- data to send, can be any length
- completeWaitTime UInt32
- Time in ms to wait for completion of transfer
Return Value
TaskMessagingReturnCode0=fail, 1=pass, 2=timeout, 3=cancelled