Decode/Revert CAN Frame ID

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

Decode/Revert CAN Frame ID

跳至解决方案
815 次查看
abdullah_cinar
Contributor III

Hi,

I am receiving hundreds of different CAN frames from a peripheral device to my MKV11Z64 MCU. When I want to send a frame, I use this macro:

FLEXCAN_ID_STD(rxIdentifier)

Then when I receive a CAN packet from the peripheral device, I need to check the frame id. So I use this:

printf("Message Id: 0x%.2X\r\n", rxFrame.id);

But it does not give me the correct value. I get 0x10C40000 as the frame id but it should be less than 0x7FF for standard IDs. Is there any reverse implementation of FLEXCAN_ID_STD macro to get the correct frame id?

I could have write my own macro by looking at the FLEXCAN_ID_STD implementation and do the reverse job but I don't understand why we can not just get the correct frame id directly.

Edit: I think when I shift the result to right for 18 bits, I get the correct result. Why does this happen?

标签 (1)
0 项奖励
1 解答
714 次查看
Sabina_Bruce
NXP Employee
NXP Employee

Hello Abdullah,

The reason you would have to do the shift to get the right id is due to the function that you are using. 

The sdk was designed to make it easier to create the message buffer, therefore different functions were implemented. One of them is FLEXCAN_ID_STD(rxIdentifier) as you can see in its declaration it is 

 (((uint32_t)(((uint32_t)(id)) << CAN_ID_STD_SHIFT)) & CAN_ID_STD_MASK) /*!< Standard Frame ID helper macro. */

With the shift being an 18 bit shift.

So in order to recover the id you will have to shift it to the right or redesign your implementation.

Best Regards,

Sabina

在原帖中查看解决方案

0 项奖励
1 回复
715 次查看
Sabina_Bruce
NXP Employee
NXP Employee

Hello Abdullah,

The reason you would have to do the shift to get the right id is due to the function that you are using. 

The sdk was designed to make it easier to create the message buffer, therefore different functions were implemented. One of them is FLEXCAN_ID_STD(rxIdentifier) as you can see in its declaration it is 

 (((uint32_t)(((uint32_t)(id)) << CAN_ID_STD_SHIFT)) & CAN_ID_STD_MASK) /*!< Standard Frame ID helper macro. */

With the shift being an 18 bit shift.

So in order to recover the id you will have to shift it to the right or redesign your implementation.

Best Regards,

Sabina

0 项奖励