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

Dependencies:   mbed

Revision:
0:5b7639d1f2c4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HeaderFiles/RSEDP_BB_24LC32_Serial_EEPROM.h	Fri Nov 19 09:49:16 2010 +0000
@@ -0,0 +1,20 @@
+                                        
+/* 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 */