• KEIL RTX Mailbox example
    Hi, i'm currently experimenting with RTX Mailboxes and i tried one the Keil example which is not working. I stripped some unimportant things like serial initialization, etc OS_TID tsk1; /* assigned...
  • 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...
  • The BUG of MAILBOX IN RTX
    The following code is part of RL-CAN in RL-RAM static CAN_ERROR CAN_pull (U32 ctrl, CAN_msg *msg, U16 timeout) { CAN_msg *ptrmsg = NULL; U32 ctrl0 = ctrl-1; /* Controller index 0 .. x-1 */ OS_RESULT...
  • 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...
  • 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...