From e64f4b0cd9a3b48f1db1fc314b3a196fda6508d8 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Fri, 2 Sep 2011 04:41:43 +0000 Subject: Update the TempDataLogger project and driver documentation to use the new TWI_BITLENGTH_FROM_FREQ() macro. --- LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'LUFA/Drivers') diff --git a/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h b/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h index 0f31eca6f..eb33ae569 100644 --- a/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h +++ b/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h @@ -52,8 +52,8 @@ * * Low Level API Example: * \code - * // Initialize the TWI driver before first use - * TWI_Init(TWI_BIT_PRESCALE_1, 10); + * // Initialize the TWI driver before first use at 200KHz + * TWI_Init(TWI_BIT_PRESCALE_1, TWI_BITLENGTH_FROM_FREQ(1, 200000)); * * // Start a write session to device at device address 0xA0, internal address 0xDC with a 10ms timeout * if (TWI_StartTransmission(0xA0 | TWI_ADDRESS_WRITE, 10) == TWI_ERROR_NoError) @@ -91,8 +91,8 @@ * * High Level API Example: * \code - * // Initialize the TWI driver before first use - * TWI_Init(TWI_BIT_PRESCALE_1, 10); + * // Initialize the TWI driver before first use at 200KHz + * TWI_Init(TWI_BIT_PRESCALE_1, TWI_BITLENGTH_FROM_FREQ(1, 200000)); * * // Start a write session to device at device address 0xA0, internal address 0xDC with a 10ms timeout * uint8_t InternalWriteAddress = 0xDC; -- cgit v1.2.3