aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Peripheral/XMEGA/Serial_XMEGA.c
Commit message (Collapse)AuthorAgeFilesLines
* Update copyrights for 2014.Dean Camera2014-01-041-2/+2
|
* Fix Serial peripheral driver compile error for XMEGA devices.Dean Camera2013-04-291-2/+2
|
* Add some missing function attributes.Dean Camera2013-04-111-2/+2
|
* Changed all *_SendByte() function prototypes to accept a void pointer for ↵Dean Camera2013-02-241-2/+2
| | | | the input buffer (thanks to Simon Küppers) instead of a uint8_t pointer.
* Update copyright year to 2013.Dean Camera2013-01-031-2/+2
|
* Minor documentation improvements.Dean Camera2012-10-051-1/+1
|
* Add architecture guards to all architecture-specific files, so that they can ↵Dean Camera2012-04-071-0/+5
| | | | be bulk-added to existing IDE projects without having to exclude unused architecture files.
* Add build tests to verify correct compilation of as many modules as possible ↵Dean Camera2012-02-181-0/+23
| | | | | | | | | | under as many architectures as possible. Fix broken compilation of LUFA under C++ compilers when the Serial peripheral module header file is included in a C++ source file. Fix missing semicolon in the UC3 architecture host pipe functions. Fix failed compilation for the XMEGA architecture if USB_DEVICE_ONLY us not specified.
* Added Serial USART peripheral driver for the XMEGA platform.Dean Camera2012-02-121-0/+94
Fix XMEGA SPI peripheral driver's incorrect const-ness on the SPI peripheral struct.