This is a complete listing of the RS-EDP software for the mbed module to support the RS-EDP platform.

Dependencies:   mbed

HeaderFiles/RSEDP_BB_24LC32_Serial_EEPROM.h

Committer:
DavidGilesHitex
Date:
2010-11-19
Revision:
0:5b7639d1f2c4

File content as of revision 0:5b7639d1f2c4:

                                        
/* Function Prototypes Here */
extern sint32_t RSEDP_BB_setup_24LC32(uint8_t Slave_Address);                                                                
/* Configure the I2C EEPROM */


extern sint32_t RSEDP_BB_eeprom_store_byte(uint8_t Slave_Address, sint8_t payload, uint16_t eeaddress);                    
/* Write one byte to one memory location */


extern sint32_t RSEDP_BB_eeprom_store_bytes(uint8_t Slave_Address, sint8_t *payload, uint8_t qty, uint16_t eeaddress);     
/* Called by main to write multiple bytes to the serial EEPROM */


extern sint32_t RSEDP_BB_eeprom_read_byte(uint8_t Slave_Address, sint8_t *read_value, uint16_t eeaddress);                
/* Read one byte from one location */


extern sint32_t RSEDP_BB_eeprom_read_bytes(uint8_t Slave_Address, sint8_t *payload, uint16_t qty, uint16_t eeaddress);    
/* Read several bytes from one location */