4 * Copyright 2003, 2004, 2005 Develer S.r.l. (http://www.develer.com/)
5 * This file is part of DevLib - See README.devlib for information.
10 * \author Stefano Fedrigo <aleph@develer.com>
11 * \author Bernardo Innocenti <bernie@develer.com>
13 * \brief Driver for the AVR ATMega TWI (interface)
18 *#* Revision 1.3 2005/04/11 19:10:28 bernie
19 *#* Include top-level headers from cfg/ subdir.
21 *#* Revision 1.2 2005/02/18 11:19:52 bernie
22 *#* Update copyright info.
28 #include <cfg/compiler.h>
30 bool twi_start_w(uint8_t slave_addr);
31 bool twi_start_r(uint8_t slave_addr);
33 bool twi_send(const void *_buf, size_t count);
34 bool twi_recv(void *_buf, size_t count);
37 #endif /* DRV_EEPROM_H */