hi.
I am implementing CAN communication and plan to use MailBox and RX FIFO together.
Some messages are stored in a mailbox with a fixed ID.
However, I want to group non-fixed message IDs (about 127), put them in the RX FIFO, and retrieve them sequentially from CallBack, but an error occurs in the configuration as shown below.
When setting up RX FIFO, it seems that Mailbox is used. I'm curious what the structure is like.
Also, please check how to receive 127 message IDs as RX FIFO.
SW_Park_1-1712297840995.png
for(uLoop_u8=0;uLoop_u8<128;uLoop_u8++)
{
filterTable[uLoop_u8].isRemoteFrame = false;
filterTable[uLoop_u8].isExtendedFrame = false;
filterTable[uLoop_u8].id = uLoop_u8 + cBASE_BM_MSG_ID;
}
-> If set as above, it did not enter the buffer.