11 lines
236 B
C
11 lines
236 B
C
|
#ifndef _EEPROM_H_
|
||
|
#define _EEPROM_H_
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
int data_eeprom_write_word(uint32_t word_addr_offset, uint32_t word);
|
||
|
|
||
|
int data_eeprom_write(uint32_t byte_offset, const uint8_t *data, uint32_t len);
|
||
|
|
||
|
#endif /* _EEPROM_H_ */
|