• rtx stack overflow due to apparent bug with mailbox implementation
    I am using the CMSIS version of rtx. Here is my code: void status_led_task(void const * arg) { bool b_flashing_state = false; uint16_t flashing_led_mask = 0; uint16_t current_led_mask; int...
  • rtx stack overflow due to apparent bug with mailbox implementation
    I am using the CMSIS version of rtx. Here is my code: void status_led_task(void const * arg) { bool b_flashing_state = false; uint16_t flashing_led_mask = 0; uint16_t current_led_mask; int...
  • 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
    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...
  • 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...