nikita teggi / Mbed 2 deprecated merged_code2_3rd_nov_2017

Dependencies:   SDFileSystem ds3231 eeprom_Nikita mbed testUniGraphic_150217

Fork of merged_code2_20sept_2017_4th_oct_2017 by nikita teggi

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