Home |
RTKernel-32 Programming Manual Function RTKSendTimed |
Function RTKSendTimedRTKSendTimed sends data to another task if the receiving task becomes ready to accept data within the timeout; otherwise, the return value indicates failure and no data is transferred. RTKBool RTKSendTimed(RTKTaskHandle Receiver, const void * Data, RTKDuration Timeout); ParametersReceiverThe handle of the receiving task. DataPointer to the data to send. TimeoutThe timeout for waiting until the receiving task becomes ready to accept data in timer ticks. return valueTRUE if the data transfer has been successfully completed or FALSE if the receiving task was not ready to accept data and the timeout has expired.
|