This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

RTOS/TMS320C6472: any example of ti mailbox test?

Part Number: TMS320C6472

Tool/software: TI-RTOS

I'm looking for some examples or materials to test ti mailbox. MBX_create, MBX_post, MBX_pend, ..

  • Dongho,

    Are you using the MCSDK 1.0? Have you looked through it for examples? That would be the first place I would recommend.

    Regards,
    RandyP
  • Hi Dongho Han,

    The typical usage of MBX_create might be:

    mbxProcess = MBX_create(sizeof(CtrlMsg), THRPROCESS_MBXLENGTH, NULL);
    UTL_assert( mbxProcess != NULL ); // halt the target and debug if we fail

    You can also use as reference for TI mailbox MBX_create, MBX_post, MBX_pend TMS320C6000 DSP/BIOS 5.x Application Programming Interface (API) at:

    BR

    Tsvetolin Shulev