aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Board
Commit message (Collapse)AuthorAgeFilesLines
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-1352-585/+637
| | | | tool made by Laszlo Monda
* Added new NO_SOF_EVENTS compile time option, enabled in the bootloaders to ↵Dean Camera2010-10-072-3/+3
| | | | reduce the compiled binary size.
* Added board hardware driver support for the Busware CUL V3 board.Dean Camera2010-10-0612-960/+1189
| | | | Added SVN eol-style property to the library driver files that are missing it.
* Added board hardware driver support for the Arduino Uno development board.Dean Camera2010-09-283-4/+135
| | | | Fixed incorrect LEDs_ChangeLEDs() function in the Benito board LED driver.
* Fixed incorrect signature reported in the CDC class bootloader for the ↵Dean Camera2010-09-141-1/+1
| | | | ATMEGA32U2.
* Added board hardware driver support for the BUI development board.Dean Camera2010-09-1443-153/+286
|
* Added board hardware driver support for the UDIP development board.Dean Camera2010-09-146-7/+261
|
* Added LEDs_ToggleLEDs() function to several board LED drivers which were ↵Dean Camera2010-09-0910-11/+21
| | | | | | missing it (thanks to Andrei Krainev). Simplify some of the LED driver functions to produce more compact code.
* Added board hardware driver support for the USBFOO development board.Dean Camera2010-09-044-0/+229
|
* Added board hardware driver support for the Olimex AVR-USB-162 development ↵Dean Camera2010-09-037-1/+246
| | | | board (thanks to Steve Fawcett).
* More spell checking of all source files -- correct missed errors, switch to ↵Dean Camera2010-07-3010-11/+11
| | | | EN-GB spelling dictionary.
* Add special support to the AVRISP-MKII for the new model USBTINY-MKII's ↵Dean Camera2010-07-291-1/+4
| | | | | | | | additional LED to indicate target power source. Add support to the USBTINY-MKII's additional LED in the board's LED driver header. Changed LED indicator masks for the AVRISP-MKII project, so that there are defined roles for each LED.
* Convert over internal pseudo-function macros to true inline functions for ↵Dean Camera2010-07-227-91/+364
| | | | added type-safety and compile-checking.
* Add missing const qualifiers to class drivers.Dean Camera2010-07-2119-19/+38
| | | | 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-175-12/+12
| | | | Minor tweaks to the library documentation.
* Spell check code and manual pages. Remove custom Doxygen CSS stylesheet, as ↵Dean Camera2010-06-162-3/+3
| | | | the new 1.7 Doxygen's default stylesheet is much better.
* Change over Doxygen \note documentation to \pre where applicable.Dean Camera2010-06-151-2/+2
|
* Minor documentation cleanups.Dean Camera2010-06-0312-13/+13
|
* 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-0842-5065/+5065
| | | | correctly converted to the target system's native end of line style.
* Oops, incorrectly edited the Benito buttons driver file instead of the ↵Dean Camera2010-03-303-20/+15
| | | | | | JM-DB-U2 buttons driver file. Fix up preprocessor guards in the new board driver files.
* Add missing board Buttons driver for the USBTINY MKII board target.Dean Camera2010-03-302-0/+99
|
* Oops - make sure board driver dispatch headers test for the correct BOARD ↵Dean Camera2010-03-304-8/+112
| | | | | | define values. Add button support for the BENITO board target.
* Added support for the JM-DB-U2 board hardware.Dean Camera2010-03-304-0/+228
|
* Added board hardware driver support for the Benito programmer.Dean Camera2010-03-302-1/+132
|
* Added board hardware driver support for Tom's USBTINY MKII programmer.Dean Camera2010-03-306-11/+139
|
* Add briefs for the library core structures.Dean Camera2010-03-2931-1/+61
|
* Add file-level brief documentation.Dean Camera2010-03-2935-61/+42
| | | | Remove accidentally duplicated model-specific peripheral driver files.
* Added new Relay Controller Board project (thanks to OBinou).Dean Camera2010-03-242-4/+130
| | | | Added hardware board driver support for the PJRC Teensy line of USB AVR boards.
* Revert changes made for the partial port to the AVR32 architecture.Dean Camera2010-02-2428-453/+92
|
* Update Temperature board driver to be AVR32 compatible when the ADC ↵Dean Camera2010-02-233-5/+18
| | | | | | 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.
* Change over board hardware drivers to use the custom uintN_t and intN_t ↵Dean Camera2010-02-2222-87/+69
| | | | native word size types.
* Add drivers for the EVK1101 - begin full port to the AVR32 UC3B line of AVRs.Dean Camera2010-02-229-12/+378
|
* Add more include protection macros to give the user warnings when they try ↵Dean Camera2010-02-1129-29/+28
| | | | to manually include private driver header files, instead of the public driver headers.
* New BOARD value option BOARD_NONE (equivelent to not specifying BOARD) which ↵Dean Camera2010-02-045-10/+16
| | | | | | will remove all board hardware drivers which do not adversely affect the code operation (currently only the LEDs driver). Spell-check code/comments in the Webserver/AVRISP-MKII projects.
* Make board specific and device peripheral specific drivers' file ↵Dean Camera2010-02-0129-0/+148
| | | | documentation copy over to the module documentation, so that it is visible in the normal module view of the library documentation.
* Fixed STK525 Dataflash driver using incorrect bit-shifting for Dataflash ↵Dean Camera2010-02-011-2/+2
| | | | addresses (thanks to Tim Mitchell).
* Added explicit ADC channel masks for the standard set of ADC channels, as ↵Dean Camera2010-01-252-4/+7
| | | | the single-ended channel MUX masks are not equal to the channel number on some AVR models. Changed demos to use the new channel masks when using the ADC driver.
* Oops - incorrect Dataflash chip select mask in the XPLAIN Dataflash driver.Dean Camera2010-01-071-1/+1
|
* Fix XPLAIN Dataflash and LED drivers.Dean Camera2010-01-072-11/+9
|
* Update copyright year to 2010.Dean Camera2009-12-3035-70/+70
|
* Fix MIT license language to make its intent clearer.Dean Camera2009-12-2835-247/+247
|
* Use -pedantic compile time option to find and correct several minor code errors.Dean Camera2009-12-135-5/+5
|
* Increase timeout of Mass Storage and Still Image host commands to 10 seconds ↵Dean Camera2009-12-091-1/+1
| | | | | | | | (up from 5) to account for slow-processing devices. Added brace guards to macros with parameters to prevent unintended changed evaluation of the macro expression. Minor code cleanups (remove redundant comments, fix spacing, etc.).
* Added support for the Atmel EVK527 board hardware.Dean Camera2009-12-0410-3/+557
|
* Added support for the Dataflash mounted on the XPLAIN board. Added new ↵Dean Camera2009-12-037-3/+235
| | | | XPLAIN_REV1 board target for the first revision XPLAIN board, which used a different (smaller) Dataflash IC to later revisions.
* Fixed broken USB_GetNextDescriptor() function causing the descriptor to jump ↵Dean Camera2009-11-241-2/+2
| | | | | | ahead double the expected amount. Fixed Pipe_IsEndpointBound() not masking the given Endpoint Address against PIPE_EPNUM_MASK.
* Spell check all source code variables, comments and strings.Dean Camera2009-11-091-1/+1
|
* Remove dependancies from the LowLevel demos to the ClassDriver demos, since ↵Dean Camera2009-11-081-1/+1
| | | | the use of ClassDriver headers now outputs an error when NO_STREAM_CALLBACKS is used.