.,

Dependents:   esclavo_maestro

Committer:
alejo5214416
Date:
Mon Jul 30 03:53:00 2018 +0000
Revision:
3:770d884b04c4
Parent:
2:4fd30af0937d
conteo ok, escritura ok, reset ok, lectura ok. 29-7-18

Who changed what in which revision?

UserRevisionLine numberNew contents of line
alejo5214416 0:7c54b267cbd3 1 // eeprom.h file
alejo5214416 0:7c54b267cbd3 2 #ifndef EEPROM_H
alejo5214416 0:7c54b267cbd3 3 #define EEPROM_H
alejo5214416 0:7c54b267cbd3 4 #include "mbed.h"
alejo5214416 0:7c54b267cbd3 5
alejo5214416 0:7c54b267cbd3 6 extern I2C i2c;//sda scl
alejo5214416 0:7c54b267cbd3 7 extern Serial pc;
alejo5214416 0:7c54b267cbd3 8
alejo5214416 0:7c54b267cbd3 9 void freq(uint32_t frec);
alejo5214416 0:7c54b267cbd3 10 int write_data(uint8_t eepr_addr, uint16_t address, uint8_t *ptr_string);//eepr_addr=memory addres,address= position into memory
alejo5214416 0:7c54b267cbd3 11 uint8_t data_read(uint8_t eepr_addr, uint16_t address_read);
alejo5214416 0:7c54b267cbd3 12
alejo5214416 0:7c54b267cbd3 13
alejo5214416 0:7c54b267cbd3 14
alejo5214416 0:7c54b267cbd3 15
alejo5214416 0:7c54b267cbd3 16 #endif