• temporarily supress WARNING
    How can I temporarily supress a Compiler Warning just for one function? I thougt about #pragma WARNING disable = 47 void my_function(int iTest) { //do nothing, //iTest is an unreference Parameter...
  • RTX - Tick supression possible?
    Hi, I am evaluating various RTOS solutions for a very low power Cortex-M3 based device, and one of my requirements is that the MCU isn't woken up every n ms to handle a clock tick. Various RTOS...
  • RealView warning
    I have declared this variable : unsigned int Test; To set de MSB, i can make so : Test |= 0x80000000; it works ok, but if I make so : Test |= (1 << 31), the realview compiler claims : warning...
  • Disable and enable specific compiler warning
    Hi I want to disable a specific compiler warning for a code section. I tried the pragma warning #pragma warning disable = 138 which will work, but I am missing a possibility to enable the...
  • Is there a way to disable specific warnings ?
    I'm using uV 4.70.0.0, compiler version is 5.03.0.24. Is there a way to disable specific warnings? In other Keil toolchains I seem to remember there was a command-line control that allowed this....