2022-11-28 02:16 AM
2022-11-28 02:28 AM
The Linker Script or .LD file describes memory regions in a manner similar to the .ICF
It is parsed in a linear fashion, describing memory regions and the way code and data is funneled into memory.
It exports symbols the linker can fix up.
In C code you can reference these symbols, or use __attribute__ type directives to drive section usage.
This is more GNU/GCC specific than STM32 related.