This is a part of the Kinetiszer project.

Dependents:   SoundEngine

eeprom.h

Committer:
Clemo
Date:
2014-10-28
Revision:
0:5a419ba2726d

File content as of revision 0:5a419ba2726d:

#ifndef __EEPROM_H__
#define __EEPROM_H__


// TODO: replace this structure by external EEPROM chip driver.
typedef struct
{
	void (*write)(uint32_t address, uint8_t value);
	uint8_t (*read)(uint32_t address);
}
eeprom_t;

extern eeprom_t EEPROM;


#endif // __EEPROM_H__