aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Peripheral/SerialStream.h
Commit message (Collapse)AuthorAgeFilesLines
* Documentation improvements - put driver example code into its own section, ↵Dean Camera2010-12-261-2/+5
| | | | fix incorrect and missing section names.
* Added basic driver example use code to the library documentation.Dean Camera2010-12-261-5/+25
| | | | 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.
* Add missing const qualifiers to class drivers.Dean Camera2010-07-211-2/+4
| | | | Indent core library function parameters so that there is only one parameter per line, to increase readability.
* Update makefiles to use the latest WinAVR/Atmel toolchain makefile template.Dean Camera2010-07-191-1/+1
| | | | Add new module source variables to the library core makefile, so that module sources can be added to a project's makefile on a per-module rather than per-file basis.
* Renamed SERIAL_STREAM_ASSERT() macro to STDOUT_ASSERT().Dean Camera2010-06-171-2/+2
| | | | Minor tweaks to the library documentation.
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-081-113/+113
| | | | correctly converted to the target system's native end of line style.
* Add file-level brief documentation.Dean Camera2010-03-291-3/+6
| | | | Remove accidentally duplicated model-specific peripheral driver files.
* Revert changes made for the partial port to the AVR32 architecture.Dean Camera2010-02-241-2/+0
|
* Update Temperature board driver to be AVR32 compatible when the ADC ↵Dean Camera2010-02-231-0/+2
| | | | | | peripheral driver is eventually ported. Make architecture includes explicit for both the AVR32 and the AVR8, to make way for future architecture ports. Add SPI driver aliases for the old function names in the AVR8 driver, so that existing code will still compile against the new version.
* 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 SerialStream driver not setting stdin to the created serial stream.Dean Camera2010-02-051-0/+1
|
* Update copyright year to 2010.Dean Camera2009-12-301-2/+2
|
* Fix MIT license language to make its intent clearer.Dean Camera2009-12-281-7/+7
|
* Minor code cleanups for clarity.Dean Camera2009-11-111-2/+4
|
* Added V2Protocol handlers to the AVRISP project to enter/exit programming ↵Dean Camera2009-08-231-0/+8
| | | | | | mode, and read/write fuses, lockbits, OSCCAL and Signature bytes. Added ShutDown functions for all hardware peripheral drivers, so that peripherals can be turned off after use.
* Added const modifiers to device mode class drivers.Dean Camera2009-06-281-2/+2
| | | | | | Added parameter directions to function parameter documentation. Added new experimental FAST_STREAM_FUNCTIONS compile time option to speed up stream transfers at the expense of a higher FLASH consumption (needs testing to verify improved throughput).
* More documentation changes for better module-level documentation rather than ↵Dean Camera2009-04-171-3/+9
| | | | file-level documentation.
* Renamed Serial_Stream driver to SerialStream to remain consistent with the ↵Dean Camera2009-04-171-0/+93
rest of the library's naming scheme for files.