]>
cvs.zerfleddert.de Git - rsbs2/blob - bmc/i2c.c
2 #include <avr/interrupt.h>
6 #define TWCR_ACK TWCR = (1<<TWEN)|(1<<TWIE)|(1<<TWINT)|(1<<TWEA)|(0<<TWSTA)|(0<<TWSTO)|(0<<TWWC);
7 #define TWCR_NACK TWCR = (1<<TWEN)|(1<<TWIE)|(1<<TWINT)|(0<<TWEA)|(0<<TWSTA)|(0<<TWSTO)|(0<<TWWC);
8 #define TWCR_RESET TWCR = (1<<TWEN)|(1<<TWIE)|(1<<TWINT)|(1<<TWEA)|(0<<TWSTA)|(1<<TWSTO)|(0<<TWWC);
12 TWAR
= BMC_ADDR
& 0xfe;
14 TWCR
&= ~((1<<TWSTA
) | (1<<TWSTO
));
15 TWCR
|= ((1<<TWEA
) | (1<<TWEN
) | (1<<TWIE
));
16 printf("Status: 0x%02x\n", TW_STATUS
);
20 ISR (TWI_vect
, ISR_BLOCK
)
22 printf("Interrupt, Status: 0x%02x, Data: 0x%02x!\n", TW_STATUS
, TWDR
);