Hi, Xu,
If you use the driver of MK10DX128xxx10 for the VFT5 processor, of course, the VFT5 processor use 50mhz, RAM size is 32KB. so you only need to modify the linker file called *flash.ld, you just should the lines:
MEMORY
{
m_interrupts (RX) : ORIGIN = 0x00000000, LENGTH = 0x00000400
m_flash_config (RX) : ORIGIN = 0x00000400, LENGTH = 0x00000010
m_text (RX) : ORIGIN = 0x00000410, LENGTH = 0x000FFBF0
m_data (RW) : ORIGIN = 0x1FFF0000, LENGTH = 0x00010000 //change the LENGTH value
m_data_2 (RW) : ORIGIN = 0x20000000, LENGTH = 0x00030000 //change the LENGTH value
}
Because you use 50MHz, maybe you need change the MCG module, regarding the file, it is dependent on whether you use internal crystal or external crystal/clock source, the frequency you need reach. For example, if you use FEI mode, you do not need change anything.
After you install SDK1.3, you can refer to the example the SDK provides:
.............\driver_examples
Hope it can help you.
BR
XiangJun rong