Can the ITCM of the S32K312 store data

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Can the ITCM of the S32K312 store data

321 Views
feiyiniu
Contributor II

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

0 Kudos
Reply
1 Reply

306 Views
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 Kudos
Reply