• I do not need to be protected against myself
    #define U16 unsigned short #define U8DX unsigned char xdata * data UCDX GCDX232ptr; // receive rs 232 pointer U16 GStemp; ..... GStemp = (U16) GCDX232ptr; GStemp &= 0xFF00 ; GCDX232ptr = GStemp ;...
  • Error while Lib
    Dear All, I created a serial.lib file with four functions, and added to new project . in main i called only 2 function which is present in lib file. so its giving me an warning "*** WARNING L16:...
  • can i load memory map file myself?
    why i need to set peripheral i/o memory map everytime when i stat simulate debug? can i load memory map file which can store my setting for peripheral i/o memory map?
  • Creating .LIB and .H file
    Hai, Iam new to KEIL i created .LIB file with some funtions. and i Created .Header file with all extern declaration for the funtions which are in .Lib file i included the .h file in main.c ...
  • Creating a library (*.LIB)
    How do I compile my project into a Library (*.LIB)? Where can I get more information regarding this topic?