• Getting rid of L11 WARNING messages
    does deleting the OVERLAY directive containing the segments and functions listed in WARNING 11 result in hazardous effect. I actually managed to get rid of the L11 warnings by doing the above mentioned...
  • 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) ...
  • BL51 warning
    This is a problem of warning 16. i have tried the solution given in keil site " This warning occurs when functions which are not called are contained in a program (e.g. for test purposes). The function...
  • Warning L5 - BL51
    Hello, when I compile my application these warning messages from linker(BL51) are occured: *** WARNING L5: CODE SPACE MEMORY OVERLAP FROM: 0043H TO: 0066H *** WARNING L5: CODE SPACE MEMORY...
  • BL51 warning L15 and bit returning
    Hi to all. I have some functions that are called from different ISR and are NOT declared as reentrant. Both functions return BOOL which is typedef as follows: typedef unsigned char BOOL; (the...