Can I access the mailbox size of a statically created mailbox in the C code? I found a similar question linked below but it didn’t quite answer the question.
http://e2e.ti.com/support/embedded/tirtos/f/355/p/273360/954827.aspx#954827
For example, if I statically create a mailbox, the cfg file may have an entry like the line below.
Program.global.cmd_mbx = Mailbox.create(8, 4, mailbox0Params);
In the C source, can I access the mailbox “size of messages” and “max number of messages” in the C code? In this case, the size would be 8 and the max number of messages would be 4.