I have an eeprom that communicates via SPI. I will write a driver for this eeprom, but this writing process will not contain any ready-made functions. Writing and reading operations will start from a certain address and write this much data. I write in c language. It will be valid for embedded systems. What kind of structure and algorithm can I create?
I created a struct structure and this structure has two members, address and size. How can I assign these two members as parameters to the writing function and how can I perform writing operations in the body of the function? Please help me.I plan to do it using function pointer