Please note: We are aware of an issue affecting replies on the Arm Community forums, which may not be loading as expected.
We apologize for any inconvenience and appreciate your patience while we investigate and work to resolve the issue.
Thank you for your understanding.
Hi All,
I am using uVision3 and RV compilar with LPC2000. Who can I reserve in the on chip FLASH memory an area that the compilar will no put there a code. I need known memory reserved area for downloading an external data.
Thanks Kobi
You can use the scatter loading file.
Either you can reserve a section of memory for your data or you can put your code at specific address of memory.
Suvidh
TNX
Hi,
Do I have to use IAP in order to place txt file in the reserved memory area or I can use the linker? If yes, How?
Kobi
If your Text is Fixed and is to be loaded design time You can define it as an "array of constant" in a section or a different file.(say file.c) const char abc[]={content} In your scatter loading description this file.o goes to the required rom section/address.
Hi
I need to add an external text file. Currenty I am planing to load it with the IAP, but if there is easier way, I will be glad to learn.
Thanks kobi