aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers
Commit message (Collapse)AuthorAgeFilesLines
...
* 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-2966-78/+373
|
* Add file-level brief documentation.Dean Camera2010-03-2995-416/+444
| | | | Remove accidentally duplicated model-specific peripheral driver files.
* All Class Driver Host mode demos now correctly set the board LEDs to READY ↵Dean Camera2010-03-253-12/+14
| | | | | | once the enumeration process has completed. Fixed Still Image Host class driver not resetting the transaction ID when a new session is opened, fixed driver not sending a valid session ID to the device.
* 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.
* Fixed incorrect definition of HID_ALIGN_DATA() causing incorrect HID report ↵Dean Camera2010-03-241-1/+1
| | | | item data alignment.
* Fixed compilation error in the AudioInput demos when ↵Dean Camera2010-03-242-4/+4
| | | | | | | | MICROPHONE_BIASED_TO_HALF_RAIL is defined (thanks to C. Scott Ananian). Minor documentation cleanups. Make sure HID class driver uses properly cast pointers when writing to the report buffer.
* Software PDI mode breaks unless the software USART has 100 cycles between bits.Dean Camera2010-03-171-5/+4
|
* Improve documentation for the ADC and TWI drivers.Dean Camera2010-03-152-2/+10
|
* Fixed ADC routines not correctly returning the last result when multiple ↵Dean Camera2010-03-131-21/+29
| | | | | | channels were read. Fixed ADC routines failing to read the extended channels (Channels 8 to 13, Internal Temperature Sensor) on the U4 series USB AVR parts.
* Fix incorrect LED mask name in the Webserver project.Dean Camera2010-03-092-3/+5
| | | | Fix missing text from the Host Mode States enum documentation.
* Fix TWI driver not aborting when faced with no response after attempting to ↵Dean Camera2010-02-251-2/+2
| | | | address a device on the bus.
* Added a timeout value to the TWI_StartTransmission() function, within which ↵Dean Camera2010-02-242-22/+43
| | | | | | the addressed device must respond. Fixed TWI_StartTransmission() corrupting the contents of the GPIOR0 register.
* Fix incorrect error when directly including the LUFA internal USB library ↵Dean Camera2010-02-2416-16/+16
| | | | components.
* Revert changes made for the partial port to the AVR32 architecture.Dean Camera2010-02-2461-1502/+669
|
* More AVR32 achitecture ports.Dean Camera2010-02-2410-73/+111
|
* More porting of the USB core to the AVR32.Dean Camera2010-02-2319-205/+407
|
* Start porting the USB core to the AVR32 UC3B.Dean Camera2010-02-2318-121/+353
|
* Update Temperature board driver to be AVR32 compatible when the ADC ↵Dean Camera2010-02-2312-50/+93
| | | | | | 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-234-6/+24
| | | | | | 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-2222-87/+69
| | | | native word size types.
* Add start of an AVR32 SPI driver.Dean Camera2010-02-222-21/+150
|
* Rename AVRU4U6U9 peripheral driver directory to AVR8.Dean Camera2010-02-228-4/+4
|
* Make SPI and USART peripheral dispatch driver headers in preparation for a ↵Dean Camera2010-02-226-53/+210
| | | | set of AVR32 peripheral drivers.
* Add drivers for the EVK1101 - begin full port to the AVR32 UC3B line of AVRs.Dean Camera2010-02-2211-13/+379
|
* Turn OFF double banking in the Webserver demo - leaving it on seems to ↵Dean Camera2010-02-181-2/+1
| | | | destroy the system throughput.
* Fix HID Host Class driver sending incorrect ReportType values to the device ↵Dean Camera2010-02-141-2/+2
| | | | when issuing requests via the control pipe.
* Fixed accuracy of the SERIAL_UBBRVAL() and SERIAL_2X_UBBRVAL() macros for ↵Dean Camera2010-02-121-2/+2
| | | | higher baudrates (thanks to Renaud Cerrato).
* Add more include protection macros to give the user warnings when they try ↵Dean Camera2010-02-11106-79/+336
| | | | to manually include private driver header files, instead of the public driver headers.
* Fixed USB_GetHIDReportSize() returning the number of bits in the specified ↵Dean Camera2010-02-092-2/+4
| | | | | | | | report instead of bytes. Moved the USB_GetHIDReportItemInfo() calls into the main report item passing loop in the *HostWithParser demos - it is fast enough not to effect performance, and avoids duplicate code. Make Webserver project report the LUFA version as part of the HTTP header.
* Fix AVRISP-MKII clone project's TPI Chip Erase command processing - ensure ↵Dean Camera2010-02-082-8/+16
| | | | | | erase location is the high byte in the given address space, check NVMBUSY for completion rather than the NVM Bus Enable bit. Change If-Else chains over to switch statements in XPROGProtocol.c for clarity.
* Added Keyboard LED report masks (KEYBOARD_LED_*) to the HID class driver and ↵Dean Camera2010-02-071-0/+12
| | | | demos.
* Added keyboard modifier masks (HID_KEYBOARD_MODIFER_*) to the HID class ↵Dean Camera2010-02-071-12/+38
| | | | driver and Keyboard demos.
* Fixed SerialStream driver not setting stdin to the created serial stream.Dean Camera2010-02-051-0/+1
|
* Oops - serial stream driver should return _FDEV_EOF when no data has been ↵Dean Camera2010-02-051-1/+1
| | | | received, not EOF.
* Fixed SerialStream driver blocking while waiting for characters to be ↵Dean Camera2010-02-051-0/+3
| | | | received instead of returning EOF.
* 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.
* Add documentation to the USB Class Drivers module on how to use the Host ↵Dean Camera2010-02-021-0/+109
| | | | mode class drivers.
* Replace the Webserver demo's uIP with the latest code ripped from the ↵Dean Camera2010-02-021-0/+109
| | | | Contiki project by Adam Dunkels.
* Fixed incorrect values of USB_CONFIG_ATTR_SELFPOWERED and ↵Dean Camera2010-02-013-2/+12
| | | | | | | | USB_CONFIG_ATTR_REMOTEWAKEUP tokens (thanks to Claus Christensen). Mark the AVRISP-MKII project descriptors as being both Bus Powered and Device Powered. Copy over file level documentation of the peripheral drivers to the module level documentation.
* 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).
* Fixed Pipe_IsEndpointBound() function not taking the endpoint's direction ↵Dean Camera2010-02-015-6/+26
| | | | | | into account. Re-added Pipe_IsEndpointBound() calls to the CDC and RNDIS host class drivers, not that the function has the correct behaviour for devices with bidirectional endpoints.
* Be doubly-certain that the incomming CDC class driver's endpoint/pipe is ↵Dean Camera2010-01-282-10/+26
| | | | flushed only once when the bank is empty.
* Clean up Webserver project - add more Doxygen documentation for the new DHCP ↵Dean Camera2010-01-271-4/+4
| | | | client functions and defines.
* Move TWI.c driver into the straight LUFA/Drivers/Peripheral/ directory.Dean Camera2010-01-252-2/+2
| | | | Fix TemperatureDataLogger and Webserver project builds.
* Fixed CDC and RNDIS host demos and class drivers - bidirectional endpoints ↵Dean Camera2010-01-254-115/+15
| | | | should use two seperate pipes, not one half-duplex pipe.
* Cleanup and partially fix AVRISP-MKII project's TPI programming support.Dean Camera2010-01-251-9/+34
|