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

Dependencies:   mbed

Committer:
DavidGilesHitex
Date:
Fri Nov 19 09:49:16 2010 +0000
Revision:
0:5b7639d1f2c4

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
DavidGilesHitex 0:5b7639d1f2c4 1
DavidGilesHitex 0:5b7639d1f2c4 2 /* Function Prototypes Here */
DavidGilesHitex 0:5b7639d1f2c4 3 extern sint32_t RSEDP_BB_setup_24LC32(uint8_t Slave_Address);
DavidGilesHitex 0:5b7639d1f2c4 4 /* Configure the I2C EEPROM */
DavidGilesHitex 0:5b7639d1f2c4 5
DavidGilesHitex 0:5b7639d1f2c4 6
DavidGilesHitex 0:5b7639d1f2c4 7 extern sint32_t RSEDP_BB_eeprom_store_byte(uint8_t Slave_Address, sint8_t payload, uint16_t eeaddress);
DavidGilesHitex 0:5b7639d1f2c4 8 /* Write one byte to one memory location */
DavidGilesHitex 0:5b7639d1f2c4 9
DavidGilesHitex 0:5b7639d1f2c4 10
DavidGilesHitex 0:5b7639d1f2c4 11 extern sint32_t RSEDP_BB_eeprom_store_bytes(uint8_t Slave_Address, sint8_t *payload, uint8_t qty, uint16_t eeaddress);
DavidGilesHitex 0:5b7639d1f2c4 12 /* Called by main to write multiple bytes to the serial EEPROM */
DavidGilesHitex 0:5b7639d1f2c4 13
DavidGilesHitex 0:5b7639d1f2c4 14
DavidGilesHitex 0:5b7639d1f2c4 15 extern sint32_t RSEDP_BB_eeprom_read_byte(uint8_t Slave_Address, sint8_t *read_value, uint16_t eeaddress);
DavidGilesHitex 0:5b7639d1f2c4 16 /* Read one byte from one location */
DavidGilesHitex 0:5b7639d1f2c4 17
DavidGilesHitex 0:5b7639d1f2c4 18
DavidGilesHitex 0:5b7639d1f2c4 19 extern sint32_t RSEDP_BB_eeprom_read_bytes(uint8_t Slave_Address, sint8_t *payload, uint16_t qty, uint16_t eeaddress);
DavidGilesHitex 0:5b7639d1f2c4 20 /* Read several bytes from one location */