kopia lustrzana https://github.com/gnea/grbl
10 wiersze
334 B
C
Executable File
10 wiersze
334 B
C
Executable File
#ifndef eeprom_h
|
|
#define eeprom_h
|
|
|
|
char eeprom_get_char(unsigned int addr);
|
|
void eeprom_put_char(unsigned int addr, char new_value);
|
|
void memcpy_to_eeprom_with_checksum(unsigned int destination, char *source, unsigned int size);
|
|
int memcpy_from_eeprom_with_checksum(char *destination, unsigned int source, unsigned int size);
|
|
|
|
#endif
|