aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Peripheral/AVRU4U6U7/TWI.h
Commit message (Collapse)AuthorAgeFilesLines
* Add new ARCH option to the makefiles to (eventually) specify the target ↵Dean Camera2011-02-191-281/+0
| | | | device architecture. Update non-usb peripheral drivers to reflect future multiple architecture support.
* Renamed all driver termination *_ShutDown() functions to the more logical ↵Dean Camera2011-01-301-2/+2
| | | | name *_Disable().
* Added new high level TWI packet read/write commands, altered behaviour of ↵Dean Camera2011-01-131-17/+98
| | | | | | the TWI_StartTransmission() function. Spell check source code files.
* Minor documentation improvements.Dean Camera2011-01-081-3/+3
|
* Update copyright year on all source files.Dean Camera2011-01-011-2/+2
|
* Documentation improvements - put driver example code into its own section, ↵Dean Camera2010-12-261-1/+4
| | | | fix incorrect and missing section names.
* Added basic driver example use code to the library documentation.Dean Camera2010-12-261-0/+42
| | | | Made the USARTStream global public and documented in the SerialStream module, allowing for the serial USART stream to be accessed via its handle rather than via the implicit stdout and stdin streams.
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-281-1/+1
| | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-131-12/+13
| | | | tool made by Laszlo Monda
* More spell checking of all source files -- correct missed errors, switch to ↵Dean Camera2010-07-301-1/+1
| | | | EN-GB spelling dictionary.
* Convert over internal pseudo-function macros to true inline functions for ↵Dean Camera2010-07-221-16/+19
| | | | added type-safety and compile-checking.
* Add missing const qualifiers to class drivers.Dean Camera2010-07-211-3/+5
| | | | Indent core library function parameters so that there is only one parameter per line, to increase readability.
* Spell check code and manual pages. Remove custom Doxygen CSS stylesheet, as ↵Dean Camera2010-06-161-1/+1
| | | | the new 1.7 Doxygen's default stylesheet is much better.
* Fix spacing of the function parameter descriptions in the Doxygen documentation.Dean Camera2010-05-291-1/+1
|
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-081-149/+149
| | | | correctly converted to the target system's native end of line style.
* Add file-level brief documentation.Dean Camera2010-03-291-0/+1
| | | | Remove accidentally duplicated model-specific peripheral driver files.
* Added a timeout value to the TWI_StartTransmission() function, within which ↵Dean Camera2010-02-241-1/+3
| | | | | | the addressed device must respond. Fixed TWI_StartTransmission() corrupting the contents of the GPIOR0 register.
* Revert changes made for the partial port to the AVR32 architecture.Dean Camera2010-02-241-0/+146
|
* Rename AVRU4U6U9 peripheral driver directory to AVR8.Dean Camera2010-02-221-146/+0
|
* Make SPI and USART peripheral dispatch driver headers in preparation for a ↵Dean Camera2010-02-221-5/+5
| | | | set of AVR32 peripheral drivers.
* Add more include protection macros to give the user warnings when they try ↵Dean Camera2010-02-111-1/+1
| | | | to manually include private driver header files, instead of the public driver headers.
* Fixed incorrect values of USB_CONFIG_ATTR_SELFPOWERED and ↵Dean Camera2010-02-011-0/+5
| | | | | | | | USB_CONFIG_ATTR_REMOTEWAKEUP tokens (thanks to Claus Christensen). Mark the AVRISP-MKII project descriptors as being both Bus Powered and Device Powered. Copy over file level documentation of the peripheral drivers to the module level documentation.
* Clean up Webserver project - add more Doxygen documentation for the new DHCP ↵Dean Camera2010-01-271-4/+4
| | | | client functions and defines.
* Added master mode hardware TWI driver.Dean Camera2010-01-191-0/+141
Fixed a bug in the incomplete Webserver project, where the packet data was not being written to and read from the correct buffer address.