hi
I encounted one problem for CAN message transmitting,in the case that the sending message number is large,the message can't transmit successfully.
I do it like this:
configure one mailbox and then transmit the message using these two functions:
FLEXCAN_DRV_ConfigTxMb(instance, mailbox, &dataInfo, messageId);
FLEXCAN_DRV_Send(instance, mailbox, &dataInfo, messageId, data);
since the transmiting message number is more than 100,so I have to re-use the mailbox. I found some transmiting will be failure if one mailbox is used a second time,even there is some time gap to re-use the same mailbox.
in order to avoid the failure of re-use same mailbox,which falg can indicate the transmiting finished? then I can use this flag for checking before using the same mailbox again.
thank you.