Is it possible to set the memory position a function start from? I want to know if it is possible to do so at compilation, linking or even in code.
Also I'm working with FreeRTOS, is it possible too?
Is it possible to set the memory position a function start from? I want to know if it is possible to do so at compilation, linking or even in code.
Also I'm working with FreeRTOS, is it possible too?
Copyright © 2021 Jogjafile Inc.
What toolchain do you use? Some compilers have special syntax for this (e.g. with word "absolute"), but if you are using GCC you should edit a linker file (.ld). Its syntax is rather cryptic at first sight, but it have a docs where everything is explained. In short, you should mark your function that it belongs to a section like this:
and then add following text to your MyProject.ld file after all existing sections:
Also, add a key like "-Map=output.map" to your makefile to generate mapfile and then seek a name of your function in output.map to check if it has correct address. There may be additional difficulties with e.g. inlining a function or inlining something in it, so i suggest putting it to the separate .c file. You can also addg reflashable memory to MEMORY section of the .ld file, in that case you won't need to add address, but need to add memory name like this:
You can also add an EXCLUDE_FILE directive to other sections so it won't be included in other sections too. Check a .map file to see results.