aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common
Commit message (Collapse)AuthorAgeFilesLines
...
* Added board hardware driver support for the Microsin AVR-USB162 development ↵Dean Camera2010-11-211-1/+4
| | | | board.
* Added board hardware driver support for the Adafruit U4 breakout board.Dean Camera2010-11-081-0/+3
| | | | | | Fixed calculation of timer register reload values derived from F_CPU; must subtract one from the division result for the compare value to be correct. Change AVRISP-MKII rescue clock speed to 4MHz to ensure that a 125KHz ISP speed works regardless of the target's fuses (i.e. DIV8 set).
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-283-3/+3
| | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
* Added board hardware driver support for the Minimus board (thanks to the ↵Dean Camera2010-10-171-0/+3
| | | | PSGroove team).
* Added board hardware driver support for the Maximus board (thanks to the ↵Dean Camera2010-10-171-0/+3
| | | | PSGroove team).
* Added board hardware driver support for the Blackcat USB JTAG board (thanks ↵Dean Camera2010-10-171-0/+3
| | | | to the PSGroove team).
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-133-52/+55
| | | | tool made by Laszlo Monda
* Added board hardware driver support for the Busware CUL V3 board.Dean Camera2010-10-061-0/+3
| | | | 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-281-0/+3
| | | | Fixed incorrect LEDs_ChangeLEDs() function in the Benito board LED driver.
* Reverted modifications to USBInterrupt.h that were intefering with correct ↵Dean Camera2010-09-221-2/+2
| | | | | | | | host mode operation. Fixed SUSPI interrupt not being cleared during device mode enumeration, causing accidental mis-fires on re-enumeration. Fixed JTAG_DEBUG_POINT() and JTAG_DEBUG_BREAK() macros not compiling under pure C99 standards mode.
* Fix board name redefinition in BoardTypes.h (thanks to Daniel Czigany).Dean Camera2010-09-141-1/+1
|
* Added board hardware driver support for the BUI development board.Dean Camera2010-09-141-0/+3
|
* Added board hardware driver support for the UDIP development board.Dean Camera2010-09-141-0/+3
|
* Added board hardware driver support for the Olimex AVR-USB-162 development ↵Dean Camera2010-09-031-0/+3
| | | | board (thanks to Steve Fawcett).
* Oops - fix mixed "initialize" and "initialise" - opt for American spelling ↵Dean Camera2010-07-301-2/+2
| | | | due to its wide use in technical standards.
* More spell checking of all source files -- correct missed errors, switch to ↵Dean Camera2010-07-302-5/+5
| | | | EN-GB spelling dictionary.
* Spell check all source files once again to find any typos.Dean Camera2010-07-291-1/+1
|
* Add missing const qualifiers to class drivers.Dean Camera2010-07-211-7/+9
| | | | Indent core library function parameters so that there is only one parameter per line, to increase readability.
* Move and rename DevChaper9.c/.h and HostChapter9.c/.h to the HighLevel ↵Dean Camera2010-07-211-1/+2
| | | | | | | | directory, new named DeviceStandardReq.c/.h and HostStandardReq.c/.h. Rename LowLevel.c/.h to USBController.c/.h. Remove dependancies on the complete <avr/io.h> header in the HighLevel USB driver directory, to ensure less work is required in later (possible) ports.
* Rewrote the implementation of the SwapEndian_16() and SwapEndian_32() ↵Dean Camera2010-07-091-5/+34
| | | | | | functions so that they compile down in most instances to minimal loads and stores rather than complicated shifts. Fixed SCSI.c implementations of all the demos/projects casting the block count to a 32-bit temporary before calling SwapEndian_16().
* Added new pgm_read_ptr() macro to Common.h for reading of pointers out of ↵Dean Camera2010-06-221-3/+38
| | | | | | flash memory space. Added new SWAPENDIAN_16() and SWAPENDIAN_32() macros to Common.h for statically initialized variables at compile time.
* Renamed SERIAL_STREAM_ASSERT() macro to STDOUT_ASSERT().Dean Camera2010-06-172-16/+16
| | | | 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.
* Fix byte ordering of UUIDs in the SDP server - host can now successfully ↵Dean Camera2010-06-021-1/+1
| | | | pair to the Bluetooth device and discover the exposed Serial Port Profile RFCOMM service.
* The SDP UUID lists should be searched and ALL UUIDs matched for a record to ↵Dean Camera2010-06-021-1/+1
| | | | | | | | be retrieved, not partial matches. Change the SDP code so that the entire list must be matched against a service attribute table's contents before it is returned. Change matching algorithm so that it recursively searches through the entire attribute table, and not just pre-specified sequence attributes. Add browse lists and proper descriptions to the Serial Port service.
* Fix spacing of the function parameter descriptions in the Doxygen documentation.Dean Camera2010-05-291-5/+5
|
* Fixed incorrect signature for the ATMEGA32U2 in the DFU bootloader (thanks ↵Dean Camera2010-05-291-1/+1
| | | | | | to Axel Rohde). Partial fix to the Bluetooth SDP code - data should be encoded in big endian, not little endian.
* Fixed RNDISEthernet demos crashing when calculating checksums for ↵Dean Camera2010-05-251-1/+1
| | | | | | Ethernet/TCP packets of more than ~500 bytes due to an overflow in the checksum calculation loop (thanks to Kevin Malec). Removed string Attributes from the Service Discovery Protocol code to minimise the potential points of failure while the base code is being debugged.
* Add UUID Class matching to the Service Discovery Protocol code - SDP is now ↵Dean Camera2010-05-231-3/+3
| | | | correctly matched against the generic Service Discovery Class UUID.
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-083-443/+443
| | | | correctly converted to the target system's native end of line style.
* Use puts_P() and printf_P() instead of the normal variants where possible in ↵Dean Camera2010-04-281-8/+8
| | | | the Host mode Class Driver demos.
* Minor documentation improvements.Dean Camera2010-04-151-3/+7
|
* Rename FunctionAttributes.h to Attributes.h, as some attributes are ↵Dean Camera2010-04-152-8/+17
| | | | | | | | 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.
* Add missing board Buttons driver for the USBTINY MKII board target.Dean Camera2010-03-301-1/+1
|
* Oops - make sure board driver dispatch headers test for the correct BOARD ↵Dean Camera2010-03-301-1/+1
| | | | | | define values. Add button support for the BENITO board target.
* Added support for the JM-DB-U2 board hardware.Dean Camera2010-03-301-0/+3
|
* Added board hardware driver support for the Benito programmer.Dean Camera2010-03-301-1/+4
|
* Added board hardware driver support for Tom's USBTINY MKII programmer.Dean Camera2010-03-301-1/+4
|
* Add file-level brief documentation.Dean Camera2010-03-293-0/+3
| | | | Remove accidentally duplicated model-specific peripheral driver files.
* Added new Relay Controller Board project (thanks to OBinou).Dean Camera2010-03-241-0/+3
| | | | 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-243-127/+2
|
* Update Temperature board driver to be AVR32 compatible when the ADC ↵Dean Camera2010-02-231-2/+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.
* Fixed software PDI/TPI programming mode in the AVRISP project not correctly ↵Dean Camera2010-02-231-1/+1
| | | | | | toggling just the clock pin. Fix broken AVR8 Serial peripheral driver.
* Change over board hardware drivers to use the custom uintN_t and intN_t ↵Dean Camera2010-02-221-0/+6
| | | | native word size types.
* Add drivers for the EVK1101 - begin full port to the AVR32 UC3B line of AVRs.Dean Camera2010-02-223-2/+121
|
* New BOARD value option BOARD_NONE (equivelent to not specifying BOARD) which ↵Dean Camera2010-02-041-0/+12
| | | | | | 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.
* Inline USB management functions in the Class drivers which are standardized ↵Dean Camera2010-01-051-1/+1
| | | | but currently unused, to prevent them from using up unneccesary cycles and flash in the user application.
* Update copyright year to 2010.Dean Camera2009-12-303-6/+6
|
* Fix MIT license language to make its intent clearer.Dean Camera2009-12-283-21/+21
|
* Added support for the Atmel EVK527 board hardware.Dean Camera2009-12-041-4/+7
|