This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

how to locate const Table in Flash

Hi,
I like to place a constant table into flash at a specific adress. I found some hints around the __at directive but I did not find out how to handle this directive in case of constants.

I tried a couple of variations like the following one but none of them had been successfully

const char TestTableInFlash[] = { 0, 1, 2, 3, 4, 5, 6, 7 } __at 0x8010000;

0