Is there any way/interrupt handler that notifies CAN message has received on device?
I have used FLEXCAN_DRV_InstallEventCallback() to install callback for MBs which triggers when FLEXCAN_DRV_Receive() is called first. For which FLEXCAN_DRV_Receive() to be called continuously or polled.
But in my application, I want to get notified that CAN message has received on device and I can now call FLEXCAN_DRV_Receive() and read the message in the user buffer. Is it possible? If yes how?
(I'm using flexcan SDK drivers.)