• How The sbit keyword works
    how can an sbit variable be assigned an address which is intrinsically assigned to something else. e.g will the following code work on an 8051? sfr SCON = 0x98; // declare SCON sbit SM0 = 0x9F;...
  • How The sbit keyword works
    how can an sbit variable be assigned an address which is intrinsically assigned to something else. e.g will the following code work on an 8051? sfr SCON = 0x98; // declare SCON sbit SM0 = 0x9F;...
  • keywords volatile in an interrupt routine
    In this webpage : http://www.keil.com/support/man/docs/gsac/gsac_timer.htm The question is why two variables one use volatile but another not ?? The two variables is "TimeTick" and "clock_1s". Who...
  • keywords volatile in an interrupt routine
    In this webpage : http://www.keil.com/support/man/docs/gsac/gsac_timer.htm The question is why two variables one use volatile but another not ?? The two variables is "TimeTick" and "clock_1s". Who...
  • LINT and the __packed keyword
    Folks Looking to see if anyone else has cured this before I spend time trying myself I collect GPS data in a unpadded structure thats then sent via GPRS to a server. typedef __packed struct...