• Modified from your feedback told Sir !
    Dear Sir, with the feedback given by you I was able to re-structure my I2C Interrupt routine.Interrupt is invoking properly everytime, but I am not able to get the desired result. I want to clarify...
  • Modified from your feedback told Sir !
    Dear Sir, with the feedback given by you I was able to re-structure my I2C Interrupt routine.Interrupt is invoking properly everytime, but I am not able to get the desired result. I want to clarify...
  • From a library I've been told to to support
    Hello good and kind people. I have been told to put some code into Keil MDK ARM. I have been told it works. Here is an extract. #define loop } long ratishmy(char **IPtab) { char mystring[10...
  • From a library I've been told to to support
    Hello good and kind people. I have been told to put some code into Keil MDK ARM. I have been told it works. Here is an extract. #define loop } long ratishmy(char **IPtab) { char mystring[10...
  • About warning L15.
    I have developed 8051 software like following: void my_f(U8 t) { U8 i; U8 j; for (i=0;i<t;i++) for (j=0;j<10;j++) nop(); } void my_int (void) interrupt 2 { ....... my_f(1); ....... } ...