You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
356 B
14 lines
356 B
/**
|
|
* TODO file description
|
|
*/
|
|
|
|
#ifndef ZAVLAHA_EE_H
|
|
#define ZAVLAHA_EE_H
|
|
|
|
/** Write and wait for completion; max 64 bytes in one go and should be aligned or at least not cross the boundary! */
|
|
int ee_write(uint16_t start, const uint8_t *data, size_t len);
|
|
|
|
/** Read data */
|
|
int ee_read(uint16_t start, uint8_t *dest, size_t len);
|
|
|
|
#endif //ZAVLAHA_EE_H
|
|
|