User Activity

Below is my piece of code for CAN filter. I wish to accept only frames with ID of 0x102XXXXX (hexadecimal value) where X can be any number.uint32_t filter_id = 0x10200000; uint32_t filter_mask = 0x1FF00000; sFilterConfig.FilterBank = 14; sFil...
Hi, I want to use both CAN1 and CAN2 for my application with 500kbps and 125kbps speeds respectively. I have initialized both of them as per my requirements using HAL. Where in Tx is implemented in polling and Rx in interrupts. CAN1 Tx and Rx working...