Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1 | ingob | 1 | /*############################################################################ |
2 | ############################################################################*/ |
||
3 | |||
4 | #ifndef _I2C_MASTER_H |
||
5 | #define _I2C_MASTER_H |
||
6 | |||
7 | //############################################################################ |
||
8 | |||
9 | // I2C Konstanten |
||
10 | #define SCL_CLOCK 200000L |
||
11 | #define I2C_TIMEOUT 30000 |
||
12 | #define I2C_START 0x08 |
||
13 | #define I2C_REPEATED_START 0x10 |
||
14 | #define I2C_TX_SLA_ACK 0x18 |
||
15 | #define I2C_TX_DATA_ACK 0x28 |
||
16 | #define I2C_RX_SLA_ACK 0x40 |
||
17 | #define I2C_RX_DATA_ACK 0x50 |
||
18 | |||
19 | //############################################################################ |
||
20 | |||
918 | hbuss | 21 | extern volatile unsigned char twi_state; |
1 | ingob | 22 | extern unsigned char motor; |
23 | extern unsigned char motorread; |
||
1111 | hbuss | 24 | extern unsigned char motor_rx[16]; |
1 | ingob | 25 | |
304 | ingob | 26 | void i2c_reset(void); |
395 | hbuss | 27 | extern void i2c_init (void); // I2C initialisieren |
1209 | hbuss | 28 | extern void i2c_start (void); // Start I2C |
395 | hbuss | 29 | extern void i2c_stop (void); // Stop I2C |
1209 | hbuss | 30 | extern void i2c_write_byte (char byte); // 1 Byte schreiben |
395 | hbuss | 31 | extern void i2c_reset(void); |
1 | ingob | 32 | |
33 | #endif |