Tool/software:
Hi,
I would need some help regarding the MRAM configuration for the TCAN4550. We are using the library which is provided by TI and configure the MRAM as it is shown bellow:
TCAN4x5x_MRAM_Config MRAMConfiguration = { 0 };
/// Standard ID number of elements, you MUST have a filter written to MRAM for each element defined
MRAMConfiguration.SIDNumElements = drv_can_config->filter_len;
/// Extended ID number of elements, you MUST have a filter written to MRAM for each element defined
MRAMConfiguration.XIDNumElements = 1;
// RX0 Number of elements
MRAMConfiguration.Rx0NumElements = 5;
// RX0 data payload size
MRAMConfiguration.Rx0ElementSize = MRAM_64_Byte_Data;
// RX1 number of elements
MRAMConfiguration.Rx1NumElements = 0;
MRAMConfiguration.Rx1ElementSize = MRAM_8_Byte_Data; // RX1 data payload size
MRAMConfiguration.RxBufNumElements = 0; // RX buffer number of elements
MRAMConfiguration.RxBufElementSize = MRAM_64_Byte_Data; // RX buffer data payload size
MRAMConfiguration.TxEventFIFONumElements = 0; // TX Event FIFO number of elements
MRAMConfiguration.TxBufferNumElements = 3; // TX buffer number of elements
MRAMConfiguration.TxBufferElementSize = MRAM_64_Byte_Data; // TX buffer data payload size
Do you see any problem in this configuration?
Thank you