2017-12-05 05:40 AM
I created one segment and using #pragma i store some values in that location.
If my code size cross that memory area means, overlap error occurs.
How can i overcome with this error?
2017-12-06 10:37 AM
putting values at a fixed address and code all around that is feasible but not easy.
If possible it's better to put your special segment (the one defined with the pragma) at the end of the memory.
2017-12-07 02:53 AM
Any Other options other than creating a segment at end of the memory?
If want to put values at fixed address at start or middle of the flash memory location means, what can i do?
2017-12-07 04:46 AM
no, there are no other options: the only way to put fixed values at fixed memory addresses is to create segments with the pragma and then place them in the linker file.
But, if you put your fixed values at the end of the code memory it will be easier to manage the overlap problems (because if there is an overlap, it means that you are out of memory anyway).
By the way, why the need for absolute addresses ? Maybe of you tell us what you are trying to achieve we can provide better suggestions.
Regards,
Luca