/* * eprom.h * * Created on: 11.02.2018 * Author: steffen */ #ifndef EPROM_H_ #define EPROM_H_ #include #include void EEPROM_write(unsigned int uiAddress, unsigned char ucData); unsigned char EEPROM_read(unsigned int uiAddress); #endif /* ATMEGA8_DETECT_EPROM_H_ */