• timer2 of 8052
    how to program timer2 in 8052 can any one give me the code for it
  • May be offtopic, but ...
    Does anybody know in what protocol home security central panel (eg. Paradox Esprit)communicates with keypad ? On my scope I see continious CLK w/o any changes and on DATA I see some signals which are...
  • Assembler data space 8052
    I am writing assembler code for the 8052, which has 256 bytes of on board RAM (00-FFh) Tools are A51 ver 6.20c and BL51 ver 4.21 I am using defining the stack in the IDATA segment. If any of the stack...
  • problem with 8052 addtion
    Hi, please look into this code Code: #include "REG52.h" #include "intrins.h" void main() { long int data1 = 0xFF000000; char shift = 0xA0; data1 = _lrol_(data1,8); data1 = data1 & 0xFFFFFF00;...
  • Problem with arrays (atmel 8052)
    I've been trying to initialize a pretty big array, but I'm encountering some problems. My first attempt looked like this: const unsigned char font[] = { {0x22,0x3c,0x1c,0x3c,0x3c,0x20,0x1c,0x22...