/** * 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