I want to place a variable at a fixed address on my flash memory:#define MYDEF "abcdefg"
const u8 MY_CHAR[] __attribute__((section(".ARM.__at_0x0blabla"))) = MYDEF;this works with KEIL IDE, but I switched to STM32CUBE IDE and it is not working. The ...