I'm using Keil version 5.11 and 5.14 and in both versions I'm getting a linker erreor message (Undefined Symbol) when I use the region symbols starting with Image$$ (e.g. Image$$RW_IRAM2$$Base). Are they no longer supported (although still mentioned in the documentation) or is this a bug? Is there a workaroud?
Thanks, Udo
I found the solution by myself. Just for info, if anyone else has the same problem: In the compiler options you have to double all the $-signs; instead of Image$$RW_IRAM2$$Base you have to write Image$$$$RW_IRAM2$$$$Base, then it works.