• Target Not Created - but only unreferenced local variable warnings
    I upgraded to the latest release of some libraries and now when I compile I get a few warnings but the "target not created" but I have no clue why not. Here is the warnings: Build target 'EZmotion...
  • Warning : How to remove it
    I have used this: cont uint8_t *x[] = { "a", "b" } compiler don't generate warning but UV4.70 has warning flag on left side "initializing const uint8_t * with an expression of type char[...
  • Is there any way to eleminate the splash screen on uV3?
    Hi all, I found a related Topic on uV2 ( http://www.keil.com/forum/docs/thread9355.asp ). Unfortunally no practicable solution can be found there. Is there any Registry Switch etc. on uV3/WinXP...
  • How to get rid of unused parameter warnings?
    In the function: void DoSomething(int a, int b) { SomeOtherFunction(a); } The compiler (C166) generates the warning unused parameter b. So I tried: void DoSomething(int a, int b) ...
  • Silencing "unused parameter" warning
    Any good suggestions for silencing the "unused parameter" warnings on a per-case basis? As opposed to turning them all off via compiler option, that is. I'd like to avoid the warnings for placeholder...