What is the memory map for the 64KB SRAM version of the MKW31Z256

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

What is the memory map for the 64KB SRAM version of the MKW31Z256

489 次查看
microfirm
Contributor I

The reference manual only describes how the 128KB SRAM is divided up

0 项奖励
1 回复

395 次查看
mario_castaneda
NXP TechSupport
NXP TechSupport

Hi Frank,

You can take a look to the linker file

/* Specify the memory areas */
MEMORY
{
   m_interrupts (RX) : ORIGIN = 0x00000000, LENGTH = 0x00000200
   m_flash_config (RX) : ORIGIN = 0x00000400, LENGTH = 0x00000010
   m_text (RX) : ORIGIN = 0x00000410, LENGTH = 0x0003FBF0
   m_data (RW) : ORIGIN = 0x1FFFC000, LENGTH = 0x00010000
}

So, you will have a origin address 0x1FFF_C000 to 0x2000_C000

pastedImage_1.png

Hope it helps,

Best Regards,

Mario

0 项奖励