Can the ITCM of the S32K312 store data?If can store the data,what should i pay attention to?Thanks!
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