Hi,
I enabled the CSE by partitioning the flash with CSE keys size to 512 bytes.
I can now see that the CSE PRAM is accessible.
But after partitioning, when I load an application and run it, I encounter a Hardfault Exception at the startup.c specifically on these lines:
#if !defined(__ARMCC_VERSION)
/* Copy initialized data from ROM to RAM */
while (data_rom_end != data_rom)
{
*data_ram = *data_rom;
data_ram++;
data_rom++;
}
Why is this so?
Solved! Go to Solution.
This is all good. I was using a different micro, so my linker file was all messed up.
This is all good. I was using a different micro, so my linker file was all messed up.