Hi,
I am trying to implement read/write on EEPROM for TM4C123GH6PGE . This is what i have read in datasheet
There are 32 blocks of 16 words each in the EEPROM. Bytes and half-words can be read, and
these accesses do not have to occur on a word boundary.
Q: i used EEPROMRead and it takes word only,then how can i read half-words ?
The entire word is read and any unneeded
data is simply ignored. They are writable only on a word basis. To write a byte, it is necessary to
read the word value, modify the appropriate byte, and write the word back.
Q: I used EEPROMProgram consecutively and i found that consecutive write overwrite the memory without the read as mentioned in datasheet ?