EEprom non-blocking byte write

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
melac_296496
Level 2
Level 2

Is there a single byte write non-blocking API for EEprom?  I saw  EEPROM_StartWrite, which is non-blocking and works, but it writes 16 bytes to a row location.  Is there way to use that to write single byte of data?

0 Likes
1 Solution
Bob_Marlowe
Level 10
Level 10
First like given 50 questions asked 10 questions asked

Is there way to use that to write single byte of data? Short answer: No

   

You will have to read eeprom data into a memory array, change the byte and write back a complete row.

   

 

   

Bob

View solution in original post

0 Likes
1 Reply
Bob_Marlowe
Level 10
Level 10
First like given 50 questions asked 10 questions asked

Is there way to use that to write single byte of data? Short answer: No

   

You will have to read eeprom data into a memory array, change the byte and write back a complete row.

   

 

   

Bob

0 Likes