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 /* Header File for I2C Routines */
DavidGilesHitex 0:5b7639d1f2c4 2 /* **************************** */
DavidGilesHitex 0:5b7639d1f2c4 3
DavidGilesHitex 0:5b7639d1f2c4 4
DavidGilesHitex 0:5b7639d1f2c4 5 /* Function Prototypes Here */
DavidGilesHitex 0:5b7639d1f2c4 6 extern void setup_CNTRL_I2C_Master_Mode(void);
DavidGilesHitex 0:5b7639d1f2c4 7 /* Configuration & setup */
DavidGilesHitex 0:5b7639d1f2c4 8
DavidGilesHitex 0:5b7639d1f2c4 9
DavidGilesHitex 0:5b7639d1f2c4 10
DavidGilesHitex 0:5b7639d1f2c4 11 extern sint32_t CNTRL_I2C_Master_Mode_Transmit(uint8_t targ_address, sint8_t *Tx_Array, uint16_t num_bytes);
DavidGilesHitex 0:5b7639d1f2c4 12 /* Send a data packet from this master to a slave device */
DavidGilesHitex 0:5b7639d1f2c4 13
DavidGilesHitex 0:5b7639d1f2c4 14
DavidGilesHitex 0:5b7639d1f2c4 15
DavidGilesHitex 0:5b7639d1f2c4 16 extern sint32_t CNTRL_I2C_Master_Mode_Receive(uint8_t targ_address, sint8_t *Rx_Array, uint16_t num_bytes);
DavidGilesHitex 0:5b7639d1f2c4 17 /* Receive a data packet from a slave */
DavidGilesHitex 0:5b7639d1f2c4 18