Question
Placing string in a fixed memory address on flash
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 mcu is an STM32F10
How do I have to change the attribute? Do I have also to change the linker script file ? This scares my...
Thanks