Hello, is there a way to instruct the compiler to place a const value at a specific address in flash memory? On another toolchain I was able to useconst char array1[4] = {1,2,3,4} absolute 0x9D008000; // stored at flash address 0x9D008000If not, is...