Alejandro Giraldo Martinez / eeprom

Dependents:   esclavo_maestro

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers eeprom.h Source File

eeprom.h

00001 // eeprom.h file
00002 #ifndef EEPROM_H
00003 #define EEPROM_H
00004 #include "mbed.h"
00005 
00006 extern I2C i2c;//sda   scl
00007 extern Serial pc;
00008 
00009 void freq(uint32_t frec);
00010 int write_data(uint8_t eepr_addr, uint16_t address, uint8_t *ptr_string);//eepr_addr=memory addres,address= position into memory
00011 uint8_t data_read(uint8_t eepr_addr, uint16_t address_read);
00012 
00013 
00014 
00015 
00016 #endif