• Re: EEPROM Data read
    void I2C_Start(void) { SDA=HIGH; Delay(15); SCLK =HIGH; Delay(15); SDA = LOW; Delay(15); SCLK = LOW; Delay(15); } void I2C_Stop(void) { SCLK=LOW; Delay(15); SDA=LOW; Delay(15); SCLK...
  • External EEPROM data memory
    I connecting external eeprom to atmel 89C52 chip. How do I write c code so that I can write data memory to the chip while using the address lines and the rd wr on the chip.
  • Updated data on external EEPROM
    Hello all, I have a very complicated question 4 U. In my target board I use the T89C51RD2 micro and also two types of external memory devices; SRAM 32KB and parallel EEPROM 8KB. My code runs from micro...
  • eeprom data initialization
    Hi, Is there any way to initialize EEPROM data except during running time ? Regards, Andre
  • Accessing data in code space
    Hi, I'm using c to write a program for the 8051 (SiLabs IDE/KEIL). As I understand it there are 4 banks of 32k, Bank 0 is where my program is stored and the other banks I have used to store static data...