====== OSA : OS_Smsg_Send_TO ====== **OS_Smsg_Send_TO (smsg, smessage, timeout)**\\ === === {{osa:ref:attr_call_task.png|Allowed only in task}}{{osa:ref:attr_call_ct_sw.png|Switches context}}{{osa:ref:attr_call_to.png|Uses timer}} Same as ##[[en:osa:ref:allservices:OS_Smsg_Send|OS_Smsg_Send]]## with exit if timeout expires. If timeout expires before message is free, then new simple message will not be sent. === Call allowed: === Only in task === Parameters: === {| class = "fpl" |- |//''smsg''// |Simple message descriptor. Variable of ##[[en:osa:ref:description:data_types#OST_SMSG|OST_SMSG]]## type |- |//''smessage''// |Message body (##[[en:osa:ref:description:data_types#OST_SMSG|OST_SMSG]]##) |- |//''timeout''// |Time of waiting in system ticks - calling ##[[en:osa:ref:allservices:OS_Timer|OS_Timer]]## periods |} === Returns: === {| class = "fpl" |- |//''timeout''// |If timeout expired then system service ##[[en:osa:ref:allservices:OS_IsTimeout|OS_IsTimeout]]## will return **true** |} === Example: === OST_SMSG smsg; void Task (void) { for (;;) { /*...*/ OS_Smsg_Send_TO (smsg, 'B', 100); if (OS_IsTimeout()) { // Message is not sent! /*...*/ } /*...*/ } } === Old style name === **OS_SendSMsgTimeout**\\ === See also === * [[en:osa:ref:allservices:OS_Smsg_Create|OS_Smsg_Create]] * [[en:osa:ref:allservices:OS_Smsg_Send|OS_Smsg_Send]] * [[en:osa:ref:allservices:OS_Smsg_Send_Now|OS_Smsg_Send_Now]] * [[en:osa:ref:allservices:OS_Smsg_Check|OS_Smsg_Check]] * [[en:osa:ref:allservices:OS_Smsg_Accept|OS_Smsg_Accept]] * [[en:osa:ref:allservices:OS_Smsg_Wait|OS_Smsg_Wait]] * [[en:osa:ref:allservices:OS_Smsg_Wait_TO|OS_Smsg_Wait_TO]] ---- * [[en:osa:ref:services:alphabetical|Alphabetical]] * [[en:osa:ref:services:brieflist|All services]] ~~UP~~