• initiate eeprom for 89s8252
    Hello, every body! Now, I'm having a problem. Can you help me? I have a project and i want to initializes some variation in eeprom. This variation will be written when i "burn" eeprom. What directive...
  • AT89S8253 - EEPROM INITIALIZED
    Hi ! How can I initialize the STRING in internal EEPROM of AT89s8253 using a Keil C Compiler ? I need put it inside Hex file to send to a T51prog2 - ELNEC Programmer: :1030000001060203010101010001000000010101AC...
  • 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...
  • EEPROM Data Space
    I am using A51 for AT89C51ED2. Am I missing something very basic or is there no way to declare space specifically in the internal EEPROM? Do I just declare it as "XDATA" and then use the protocol for...
  • 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.