Flexcan, before send data, status the RAMn4 and RAMn5

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

Flexcan, before send data, status the RAMn4 and RAMn5

跳至解决方案
454 次查看
buccno
Contributor III

Hi, 
I wonder why this change happens. 

 

buccno_0-1671696271620.png

 

标记 (1)
0 项奖励
1 解答
429 次查看
Senlent
NXP TechSupport
NXP TechSupport

Hi@buccno

Q1.you can take a look at the S32-RM Chapter 55.4.3 Message buffer structure-

>CODE->Message Buffer Code,

Both receiving and sending will query and update the CODE area.

Q2.You mean to parse a frame of data, which can be achieved by a shift operation, for example:

bit1~3 = (recvBuff.data[0] >> 1) & 0x07;;

在原帖中查看解决方案

2 回复数
447 次查看
buccno
Contributor III

I'm confused about one more thing, For example, I have a 64-bit length message with a single ID. how can I get bit 4.(starter bit),(length 4 bit), and bit (starter bit)50.(length 4 bit)?

0 项奖励
430 次查看
Senlent
NXP TechSupport
NXP TechSupport

Hi@buccno

Q1.you can take a look at the S32-RM Chapter 55.4.3 Message buffer structure-

>CODE->Message Buffer Code,

Both receiving and sending will query and update the CODE area.

Q2.You mean to parse a frame of data, which can be achieved by a shift operation, for example:

bit1~3 = (recvBuff.data[0] >> 1) & 0x07;;