OS_Queue_Send_TO (queue, message, timeout)
Same as OS_Queue_Send with exit if timeout expires.
OS_ENABLE_QUEUE constant must be defined in OSAcfg.h.
Only in task
queue |
Queue of messages descriptor. Variable of OST_QUEUE type. |
message |
pointer to message body (OST_MSG) |
timeout |
Time of wait in system ticks - calling OS_Timer periods |
timeout |
If timeout expired then system service OS_IsTimeout will return true |
OST_QUEUE queue; void Task (void) { static char Buf[20]; for (;;) { /*...*/ OS_Queue_Send_TO (queue, buf, 100); // Wait 100 ticks if (OS_IsTimeout()) { // Message was not sent! /*...*/ } /*...*/ } }
OS_SendQMsgTimeout