Can the ITCM of the S32K312 store data

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

Can the ITCM of the S32K312 store data

342 次查看
feiyiniu
Contributor II

Can the ITCM of the S32K312 store data?If can store the data,what should i pay attention to?Thanks!

0 项奖励
回复
1 回复

327 次查看
danielmartynek
NXP TechSupport
NXP TechSupport

Hi @feiyiniu,

Yes, the ITCM can be used to store data

But this is not a typical use of it.

*((uint32_t*)0x00000400) = 0xCAFECAFE;
uint32_t data_in_itcm = 0;
data_in_itcm = *((uint32_t*)0x00000400);

 

BR, Daniel

0 项奖励
回复