Hello EveryOne
I have Custom board with "MKV10Z128" processor. I have taken Reference of freescale Tower board (TWR KV10). This Tower board contains "MKV10Z32" processor.
I have successfully built bootloader for MKV10Z32 but now as per my requirement i need to update for "MKV10Z128"....
In serial Bootloader code there is a file "KV10_32KB_pflsh.icf" which i have attached here....
FOR 32KB flash and 8KB RAM in "MKV10Z32"
/*-Memory Regions-*/
define symbol __ICFEDIT_region_ROM_start__ = 0x0000;
define symbol __ICFEDIT_region_ROM_end__ = __ICFEDIT_region_ROM_start__ + (32*1024);//******** // FOR 32KB flash
define symbol __ICFEDIT_region_RAM_end__ = 0x20000000;
define symbol __ICFEDIT_region_RAM_start__ = __ICFEDIT_region_RAM_end__ - (8*1024)/4 + 0x410;//******** // FOR 8KB RAM
I have modified as follows:
NOW FOR 128KB Flash and 16KB RAM.... in "MKV10Z128"
/*-Memory Regions-*/
define symbol __ICFEDIT_region_ROM_start__ = 0x0000;
define symbol __ICFEDIT_region_ROM_end__ = __ICFEDIT_region_ROM_start__ + (128*1024);//******** // FOR 128KB FLASH
define symbol __ICFEDIT_region_RAM_end__ = 0x20000000;
define symbol __ICFEDIT_region_RAM_start__ = __ICFEDIT_region_RAM_end__ - (16*1024)/4 + 0x410;//******** // FOR 16KB RAM
"IS there any other changes required for MKV10Z128?"
Waiting for your Inputs
Thanks & regards
Harsh
Original Attachment has been moved to: KV10_32KB_Pflash.icf.zip