config->clkSrc = kFLEXCAN_ClkSrcOsc;
config->baudRate = 500000U;
config->baudRateFD = 3200000U;
config->maxMbNum = 16;
config->enableLoopBack = false;
config->enableTimerSync = true;
config->enableSelfWakeup = false;
config->enableIndividMask = false;
This is my default configuration of can/flexcan.
FLEXCAN_TransferSendNonBlocking(EXAMPLE_CAN, TX_MESSAGE_BUFFER_NUM, &txFrame);
and using the above function to send the data to another kit likewise esp32.
But i am unable to receive any message from frdm-kw36 board to esp32 and vice versa.
The baudrate for both the kit is same.
Please guide me how to reach up to the solution.