Resolved! Prevent zero-initialized arrays in CCMRAM from being stored in FLASH.
I am using the CCMRAM to store some large array which should be zero-initialized.My definition for the arrays is similar to:__attribute__ ((section (".ccmram"))) uint32_t large_array[4096];Obviously, there is no constructor for these and there should...