Hello, if I use FLEX CAN RX FIFO to receive CAN messages, is there a way to know whether the received data frame is a standard frame or an extended frame, my FIFO IdFilterTable is configured with both standard frame and extended frame entries。
Actually, my goal is to identify whether a frame received through the legacy FIFO is an extended frame or a standard frame. Based on your guidance, am I correct in understanding that I can check if the received message is a standard frame or an extended frame by performing the operation cs >> 22 & 0x01 on the structure's content? thanks!