aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common/Attributes.h
Commit message (Collapse)AuthorAgeFilesLines
* Minor cleanup to Attributes.h spacing and rename old multiple-inclusion ↵Dean Camera2012-05-291-17/+17
| | | | macro guard.
* Update file contributor copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Update file header copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-231-2/+2
| | | | trailing whitespace at the end of each line.
* Added new USB_Host_GetDeviceConfiguration() and ↵Dean Camera2011-11-241-7/+7
| | | | USB_Host_GetInterfaceAltSetting() functions.
* Add missing "used" attribute to ATTR_INIT_SECTION to ensure functions ↵Dean Camera2011-09-221-1/+1
| | | | | | declared with that meta-attribute are not discarded by the linker. Add missing function and definition documentation.
* Split out compiler specific helper macros into a new CompilerSpecific.h ↵Dean Camera2011-07-061-5/+5
| | | | header file inside the library, for future expansion.
* Spell check library source code files.Dean Camera2011-06-011-4/+4
|
* Move out endianness management macros into a new common Endianness.h header.Dean Camera2011-03-131-1/+3
| | | | Fix Doxygen documentation, broken due to the added ATTR_PACKED attribute on some structs breaking the Doxygen parser.
* Porting updates for the UC3B architecture - get UC3B partially enumerating ↵Dean Camera2011-03-051-0/+9
| | | | using a modified mouse demo on the EVK1101. Implement a software FIFO for the endpoint banks; datasheet hints that this can be done through hardware as on the AVR8 architecture, but the correct method to do this not discovered yet.
* More updates to remove architecture-specific comments from the ↵Dean Camera2011-02-201-2/+2
| | | | documentation, alter USBMode.h preprocessor logic to support future architectures more easily.
* More Doxygen updates for multiple architecture support.Dean Camera2011-02-201-2/+2
|
* Start update of documentation to support possible multiple architectures in ↵Dean Camera2011-02-201-10/+10
| | | | the future - alter \file documentation to automatically copy in the module documentation where possible.
* Add new ARCH option to the makefiles to (eventually) specify the target ↵Dean Camera2011-02-191-4/+4
| | | | device architecture. Update non-usb peripheral drivers to reflect future multiple architecture support.
* Minor documentation improvements.Dean Camera2011-01-081-2/+2
|
* Update copyright year on all source files.Dean Camera2011-01-011-2/+2
|
* 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-16/+17
| | | | tool made by Laszlo Monda
* More spell checking of all source files -- correct missed errors, switch to ↵Dean Camera2010-07-301-2/+2
| | | | EN-GB spelling dictionary.
* Renamed SERIAL_STREAM_ASSERT() macro to STDOUT_ASSERT().Dean Camera2010-06-171-4/+4
| | | | Minor tweaks to the library documentation.
* 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.
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-081-138/+138
| | | | correctly converted to the target system's native end of line style.
* Minor documentation improvements.Dean Camera2010-04-151-3/+7
|
* Rename FunctionAttributes.h to Attributes.h, as some attributes are ↵Dean Camera2010-04-151-0/+134
applicable to variables also. Add new ATTR_NOINIT attribute for global variables. Add the beginnings of a SDP implentation to the incomplete BluetoothHost demo. Add const attribute to the Mass Storage Host driver functions where it was applicable, but missing.