We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Compiler complains when using that attribute as in example : const char MyText[] __at (0x1F00) = "TEXT AT ADDRESS 0x1F00";
Any idea ?
"Compiler complains"
In what way, precisely? Post the full text of the message; use copy-and-paste - don't manually re-type it.
with : const char MyText[] __at (0x1F00) = "TEXT AT ADDRESS 0x1F00";
Error: system.c(103): error: #65: expected a ";"
with : const char MyText[] = "TEXT AT ADDRESS 0x1F00";
Error: none