Home |
RTKernel-32 Programming Manual Function RTKSend |
Function RTKSendRTKSend sends data to another task: void RTKSend(RTKTaskHandle Receiver, const void * Data); ParametersReceiverThe handle of the task to receive the data. DataPointer to the data to send. If the receiving task is waiting in RTKReceive, RTKReceiveTimed, or RTKReceiveUntil, the data transfer takes place immediately. Otherwise, the sending task is blocked until the receiving task is ready to accept the data.
|