OS_Msg_Send (msg_cb, message)
OS_Msg_Send_I (msg_cb, message)
Only in task
msg_cb |
Pointer to message descriptor. Variable of OST_MSG_CB type |
message |
pointer to message body (OST_MSG) |
nothing
OST_MSG_CB msg_cb; void Task (void) { OST_MSG msg; static char buf[10]; for (;;) { /*...*/ OS_Msg_Send(msg_cb, buf); /*...*/ } }
OS_SendMsg