Alexis,
I followed the advice and reworked the loopback_edma_transfer example to receive my messages.
I had to set the right message ID's in the fifo filter configuration:
uint32_t rxFifoFilter[] = { FLEXCAN_RX_FIFO_EXT_FILTER_TYPE_A(0x1cfd083f, 0, 0), FLEXCAN_RX_FIFO_EXT_FILTER_TYPE_A(0x18FEEE3F, 0, 0), FLEXCAN_RX_FIFO_EXT_FILTER_TYPE_A(0x18FF313F, 0, 0), FLEXCAN_RX_FIFO_EXT_FILTER_TYPE_A(0x18FFFF3F, 0, 0)};
(Next to adapting some more lines in the code to couple the CAN circuitry to the pins, this made it working)
How can to receive every message ID?
Next to the success I notice not everything works as it should do: the second message doesn't get acknowledged the first time is is send out.
The sensor has to repeat it.
Thanks,
Gwen