This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

after_linker_process

hello !! please i want to know how could i control the placement of RW data of a "xxxx.o" on a specific region into the flash
PS : my input is a .axf file and my output would be a .hex file

Parents
  • The linker creates internal structures describing the way statics are copied and zeroed out of FLASH. This function is nominally __scatterload, and the table between Region$$Table$$Base and Region$$Table$$Limit

    The structure of the ELF object format is widely distributed on the internets if that is of interest. You'd have to manipulate that in a post-link scenario.

Reply
  • The linker creates internal structures describing the way statics are copied and zeroed out of FLASH. This function is nominally __scatterload, and the table between Region$$Table$$Base and Region$$Table$$Limit

    The structure of the ELF object format is widely distributed on the internets if that is of interest. You'd have to manipulate that in a post-link scenario.

Children