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
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(); }