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
Put a dummy call to the function in your program somewhere. My favourite is: if(!SP) { Call(); }