sustain-pedal-hid-sw/firmware/eeprom.h

11 lines
236 B
C
Raw Normal View History

2023-08-10 23:00:40 +02:00
#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_ */