Microcontroller › 8051 › Serial EEPROM 24C02 with AT89c51 microcontroller › The P3 value only showing the
July 29, 2014 at 5:03 pm
#11956
PICATA
Participant
The P3 value only showing the value which is in 0x00 word address (irrespective of word data)
I changed
unsigned char word_add[] = {0x00, 0x01};
to
unsigned char word_add[] = {0x01, 0x00};
but the result same, data stored in 0x00 is showing only
I also checked it for 0x02, 0x08 address.
what was the problem? Please help me out.