Modification into 17th July New display demo code

Dependencies:   SDFileSystem ds3231 eeprom_Nikita mbed testUniGraphic_150217

Fork of Ext_Demo_17July2017_newdis by SenseSemi

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers eeprom_pgm.h Source File

eeprom_pgm.h

00001 #ifndef EEPROM_PGM_H_
00002 #define EEPROM_PGM_H_
00003 
00004 
00005 void eprom_write(uint32_t address, int32_t data);
00006 int32_t eprom_read(uint32_t address);
00007 int8_t eprom_read_8(uint32_t address);
00008 int16_t eprom_read_16(uint32_t address);
00009 void eprom_write_8(uint32_t address, int8_t data);
00010 void eprom_write_16(uint32_t address, int16_t data); 
00011 #endif