Hi,
Hmm, are you initializing RAM in your startup code?
What do you mean by hot? (hight temperature?)
You have to initialize RAM after reset, so you wont have ECC faults in RAM.
Could you specify it more closely?
Peter
Thank you for your help! Peter!
Can you be more specific?Is it to modify the code below?
MEMORY
{
resetvector: org = 0x00000000, len = 0x00000008
init: org = 0x00000020, len = 0x00000FE0
exception_handlers: org = 0x00001000, len = 0x00001000
internal_flash: org = 0x00002000, len = 0x0007E000
internal_ram: org = 0x40000000, len = 0x00006000
heap : org = 0x40006000, len = 0x00001000
stack : org = 0x40007000, len = 0x00001000
}
MEMORY
{
pseudo_rom: org = 0x40000000, len = 0x00003000
init: org = 0x40004000, len = 0x00001000
exception_handlers: org = 0x40005000, len = 0x00001000
internal_ram: org = 0x40006000, len = 0x00001800
heap : org = 0x40007800, len = 0x00000400 /* Heap start */
stack : org = 0x40007C00, len = 0x00000400 /* Stack Start */
}