• Warning L11
    I have been using the BL51 linker, I changed my linker to the the LX51 and ported my linker directive file to the use new commands supported by the LX51(ex:CLASSES & SEGMENTS). While Linking my project...
  • L11 warning
    Hi. I use OVERLAY(PRINTF ! *) on my linker command line to prevent an L15. Now the L15 only exists in the following condition: #define A 1 #define B 1 If only 1 are active no problem. The proble...
  • How to get rid of Warning 6 from BL51?
    I have a program that is using the Large memory model. - I compile without errors, but every time I link, I get the Warning 6, telling me that I have Memory Overlap on my memory mapped IO addresses. ...
  • 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) ...
  • Warning Messages
    I have 5 different C files and i Main.c program separately. In the Project diaglog box i have added all these files. For Target Options i have selected Large 64kCode ROM size and memory model Large....