IAnt ChannelSend Burst Transfer Async Method
Sends the given data as a 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> SendBurstTransferAsync(
byte[] data,
uint completeWaitTime
)VB
Function SendBurstTransferAsync (
data As Byte(),
completeWaitTime As UInteger
) As Task(Of MessagingReturnCode)C++
Task<MessagingReturnCode>^ SendBurstTransferAsync(
array<unsigned char>^ data,
unsigned int completeWaitTime
)F#
abstract SendBurstTransferAsync :
data : byte[] *
completeWaitTime : uint32 -> Task<MessagingReturnCode> Parameters
- 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