Hi, the linker option UNUSED(REMOVE) is great. But now I have a function, that I don't use. But I want to include it on the binary. What I have to do, that this (one) function will not remove? Thanx Steffen
Why do you want to include it? Knowing your reason may help to suggest a solution...
Does this mean that you have other functions that you do want the Linker to remove? If so, why not just remove those functions from the build, so that you don't have to use the UNUSED(REMOVE) control at all?!
Hi, I write a program that load other programs. My function:
void fl_destroyAppl(void) __arm __at 0x1000;
Put a dummy call to the function in your program somewhere. My favourite is: if(!SP) { Call(); }