• Library function locating
    How can I locate standard library's function at specific address by BL51?
  • OBJECT CODE COVERAGE IS NOT 100% FOR SWITCH CASE
    I have executed all the cases for a switch case. Covered all the statements also. Still I am not getting 100% code coverage in switch case implementation. Any idea about what extra codes are generated...
  • strlen function not working properly
    Hi Guys I am facing a very strange problem related to the strlen inbuilt function in the keil C51. I wrote few functions as follows: Function 1 : void ModMasterData(uChar *,uChar *...
  • error 65: access violation : no 'execute/read' permission
    hello, i am using the following code to generate a delay of 200ms. while(tfcount <= 16666) { if (TF1 == 1) { tfcount++; TF1 = 0; } } im using the Timer 1 as a baud rate generator and it overflows...
  • INCLUDING OBJECT FILES IN LINK
    Hi All, I have 3 source files: file1.c, file2.c and file3.c and 1 header file config.h. When I built entire uvision project, 3 object files got generated. file1.obj, file2.obj, file3.obj. ...