hi suporter
with MPC5748G+ SDK(3.0),I use mailbox 26-mailbox 95 for transmitting messgebox.
the sending scripts are like this:
if((FLEXCAN_DRV_GetTransferStatus(MessagesToCANbus6,TX_MAILBOX_86)== STATUS_SUCCESS)&&sendBuff_ReStorded_CAN6[4].dataLen){
SendMessage_CAN(MessagesToCANbus6, TX_MAILBOX_86,0x99,sendBuff_ReStorded_CAN6[4].data,sendBuff_ReStorded_CAN6[4].dataLen);
}
but in the condition that 8 channels of CAN working,then after one moments(several minutes),
one of the sending mailbox will be in busy status forever,and then no more messages will be sent out any more.
the other messages in the same CAN channel is alive only this message or several sending messages is dead.
I check the return value for this function,FLEXCAN_DRV_GetTransferStatus,the return value is alaways busy.do you know why this status is alaways busy?thank you.