Added 4 point or 8 point averaging function .

Dependencies:   SDFileSystem ds3231 eeprom_Nikita mbed testUniGraphic_150217

Fork of merged_code2_3rd_nov_2017 by nikita teggi

eeprom_pgm.h

Committer:
SSR
Date:
2017-12-15
Revision:
57:a366af1ddd7b
Parent:
24:d992ee8369f4

File content as of revision 57:a366af1ddd7b:

#ifndef EEPROM_PGM_H_
#define EEPROM_PGM_H_


void eprom_write(uint32_t address, int32_t data);
int32_t eprom_read(uint32_t address);
int8_t eprom_read_8(uint32_t address);
int16_t eprom_read_16(uint32_t address);
void eprom_write_8(uint32_t address, int8_t data);
void eprom_write_16(uint32_t address, int16_t data); 
#endif