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/AWR1642: How much CAN-FD can be declaration in MMWave demo?

Part Number: AWR1642

Tool/software: TI-RTOS

I try to add 16 CANFD_createMsgObject for Tx.

 for( i = 0; i < 16; i++)
 {
    txMsgObjectParams.msgIdentifier = 0xC1+i;
    txMsgObjHandle[i] = CANFD_createMsgObject (canHandle, &txMsgObjectParams, &errCode);
 }

When I declaration more than 15 CANFD_createMsgObject for Tx, the awr1642 is crashed.

Does it the msgIdentifier be overflow?

Or it can declaration too more CANFD_createMsgObject ?