/* 
 * File:   EEPROM.h
 * Author: mcgill
 *
 * Created on October 27, 2023, 3:09 PM
 */

#ifndef EEPROM_H
#define	EEPROM_H

#ifdef	__cplusplus
extern "C" {
#endif

void EepSetup(void);
void EepErase(void);
int EepWrite(int index, int data);
int EepRead(int index);

#ifdef	__cplusplus
}
#endif

#endif	/* EEPROM_H */

