• 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...
  • Peek & Poke in C
    Hello, does anybody has a programm example how to programm Good old Basic Peek & Poke in C. I am conscious Peek & Poke is no good stil in C
  • 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...
  • 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...
  • 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...