Go to the documentation of this file.00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00025 #ifndef LIB_EEPROM16_H__
00026 #define LIB_EEPROM16_H__
00027 
00028 #include "hal_flash.h"
00029 
00034 void lib_eeprom_byte_write(uint8_t adr, uint8_t dat);
00035 
00041 void lib_eeprom_bytes_write(uint8_t adr, uint8_t *p, uint8_t n);
00042 
00047 uint8_t lib_eeprom_byte_read(uint8_t adr);
00048 
00054 void lib_eeprom_bytes_read(uint8_t adr, uint8_t *p, uint8_t n);
00055 
00056 #endif // LIB_EEPROM_H__
00057