• RTX - Mailbox
    Issue: My Task1 is sending message if(os_mbx_check() > 0) Task 2 is waiting for message and reading the msg.(and assume it has low priority) like below: Line 1: os_mbx_wait (client_task_mailbox...
  • RTX Mailbox does not transmit
    Trying use RTX mailbox I find it not robust. For some reason some messages can't be received by recipient and mailbox quickly becomes full. To find problem I use slightly modified demo program C:\Keil...
  • Dynamically allocate a RTX mailbox
    Hello, I'm using the Realview RTX and facing an issue of how to dynamically allocate a mailbox. What I'm trying to create a reentrant function, which is called by some RTX tasks, and uses a mailbox...
  • Mailbox Peek function for RTX
    Hi, I'm writing a socket oriented layer over tcp net using RTX . I need to redirect socket events to the good task for the good socket. I use together mailboxes and events : the OR / END triggering...
  • RL-RTX: Mailboxes - Array
    Hello, is it possible to create an array of mailboxes? I would like to use the mailbox objects as followes: int i; for (i = 0; i < 5; i++) os_mbx_wait(mbx[i], &ptr, 0x000A); Thanks for...