Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | More AVR32 UC3B architecture ports - USB device mode applications can now be ↵ | Dean Camera | 2011-02-27 | 1 | -1/+1 |
| | | | | sucessfully compiled, although they will be currently non-functional. | ||||
* | Removed Pipe_ClearErrorFlags(), pipe error flags are now automatically ↵ | Dean Camera | 2011-02-26 | 1 | -1/+1 |
| | | | | | | cleared when Pipe_ClearError() is called. More UC3B architecture porting. | ||||
* | Added TWI baud rate prescaler and bit length parameters to the TWI_Init() ↵ | Dean Camera | 2011-02-26 | 1 | -1/+1 |
| | | | | function (thanks to Thomas Herlinghaus). | ||||
* | Rename architecture specific driver files, to make them appear with uniquely ↵ | Dean Camera | 2011-02-20 | 1 | -1/+1 |
| | | | | identifying filenames in the documentation. | ||||
* | Added start of a port of the core USB driver code to the AVR32 UC3B ↵ | Dean Camera | 2011-02-20 | 1 | -1/+1 |
| | | | | architecture. | ||||
* | Initial restructuring of the core USB driver module to support multiple ↵ | Dean Camera | 2011-02-19 | 1 | -1/+1 |
| | | | | architectures in the future. | ||||
* | Move out Dataflash IC command constants headers into the general ↵ | Dean Camera | 2011-02-19 | 1 | -1/+1 |
| | | | | LUFA/Drivers/Misc/ directory rather than duplicating them inside the individual board driver folders. | ||||
* | Add new ARCH option to the makefiles to (eventually) specify the target ↵ | Dean Camera | 2011-02-19 | 1 | -1/+1 |
| | | | | device architecture. Update non-usb peripheral drivers to reflect future multiple architecture support. | ||||
* | Reduced latency for executing the Start-Of-Frame events (if enabled in the ↵ | Dean Camera | 2011-02-19 | 1 | -1/+1 |
| | | | | user application). | ||||
* | Add missing HID bootloader AVRStudio project. | Dean Camera | 2011-02-15 | 1 | -1/+1 |
| | |||||
* | Add more const-ness to the stream endpoint/pipe functions where possible. | Dean Camera | 2011-02-13 | 1 | -1/+1 |
| | |||||
* | Update HID bootloader loader application to support the VID/PID used by the ↵ | Dean Camera | 2011-02-09 | 1 | -1/+1 |
| | | | | bootloader. | ||||
* | Added HID class bootloader, compatible with a modified version of the ↵ | Dean Camera | 2011-02-09 | 1 | -1/+1 |
| | | | | command line Teensy loader from PJRC.com. | ||||
* | Removed SerialStream module, rolled functionality into the base USART Serial ↵ | Dean Camera | 2011-01-30 | 1 | -1/+1 |
| | | | | | | | | peripheral driver instead through the new Serial_CreateStream() and Serial_CreateBlockingStream() methods. Renamed the Serial byte send/receive functions to remain consistent with the CDC driver's byte functions. Altered the serial byte receive function to make it non-blocking. | ||||
* | Added new KeyboardMouseMultiReport Device ClassDriver demo. | Dean Camera | 2011-01-26 | 1 | -1/+1 |
| | | | | | | Fixed ReportID not being removed from the feature/out report data array in the HID class driver when Report IDs are used. Added new MAX() and MIN() convenience macros. | ||||
* | New HID report item macros (with HID_RI_ prefix) to allow for easy creation ↵ | Dean Camera | 2011-01-16 | 1 | -1/+1 |
| | | | | | | | | and editing of HID report descriptors. Changed over all project and demo HID report descriptors to use the new HID report item macros. Moved the HIDParser.c source file to the LUFA/Drivers/USB/Class/Common/ directory from the LUFA/Drivers/USB/Class/Host/. | ||||
* | Altered all endpoint/pipe stream transfers so that the new BytesProcessed ↵ | Dean Camera | 2011-01-10 | 1 | -1/+1 |
| | | | | | | | | | | parameter now points to a location where the number of bytes in the transfer that have been completed can be stored (or NULL if entire transaction should be performed in one chunk). Added new Endpoint_Null_Stream() and Pipe_Null_stream() functions. Removed the NO_STREAM_CALLBACKS compile time option due to the new partial stream transfer feature replacing it. Fixed errors in the incomplete Test and Measurement device demo preventing proper operation (thanks to Pavel Plotnikov). | ||||
* | Make a new general RingBuffer.h misc library driver, instead of the ↵ | Dean Camera | 2010-12-26 | 1 | -1/+1 |
| | | | | | | | | per-application LightweightRingBuff.h ring buffers. Change over projects to use the new driver. Add ORDERED_EP_CONFIG to the device Projects (only) that use only a single class driver, or where the endpoint ordering is fixed, to save on compiled binary size. Added new GCC_FORCE_POINTER_ACCESS() macro to correct GCC's mishandling of struct pointers. | ||||
* | Add missing AVRStudio4 project file for the MIDIToneGenerator project. | Dean Camera | 2010-12-17 | 1 | -1/+1 |
| | |||||
* | Added new completed MIDIToneGenerator project. | Dean Camera | 2010-12-03 | 1 | -1/+1 |
| | |||||
* | Readd incomplete MIDIToneGenerator project, which can now correctly generate ↵ | Dean Camera | 2010-11-24 | 1 | -1/+1 |
| | | | | up to three simultaneous notes from MIDI channel 0. | ||||
* | Added board hardware driver support for the Microsin AVR-USB162 development ↵ | Dean Camera | 2010-11-21 | 1 | -1/+1 |
| | | | | board. | ||||
* | Added board hardware driver support for the Adafruit U4 breakout board. | Dean Camera | 2010-11-08 | 1 | -1/+1 |
| | | | | | | 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). | ||||
* | Move RNDISConstants.h into the RNDIS class driver common definition header. | Dean Camera | 2010-10-28 | 1 | -1/+1 |
| | | | | Add logical grouping of related #define values for better Doxygen documentation. | ||||
* | Add descriptor class, subclass and protocol constants to the class drivers, ↵ | Dean Camera | 2010-10-25 | 1 | -1/+1 |
| | | | | | | | | modify all demos to use them where possible. Move out private/internal host class driver constants to the common class driver headers, so that they can be used in the Low Level host mode demos. Ensure all demos, projects and bootloaders use the class driver constants where possible to minimise code repetition. | ||||
* | All USB class drivers are now automatically included when LUFA/Drivers/USB.h ↵ | Dean Camera | 2010-10-24 | 1 | -1/+1 |
| | | | | | | is included, and no longer need to be seperately included. All LowLevel demos changed to use the constants and types defined in the USB class drivers. | ||||
* | Added board hardware driver support for the Minimus board (thanks to the ↵ | Dean Camera | 2010-10-17 | 1 | -1/+1 |
| | | | | PSGroove team). | ||||
* | Oops - add missing Maximus board LED hardware driver file. | Dean Camera | 2010-10-17 | 1 | -1/+1 |
| | |||||
* | Added board hardware driver support for the Maximus board (thanks to the ↵ | Dean Camera | 2010-10-17 | 1 | -1/+1 |
| | | | | PSGroove team). | ||||
* | Added board hardware driver support for the Blackcat USB JTAG board (thanks ↵ | Dean Camera | 2010-10-17 | 1 | -1/+1 |
| | | | | to the PSGroove team). | ||||
* | Added new NO_SOF_EVENTS compile time option, enabled in the bootloaders to ↵ | Dean Camera | 2010-10-07 | 1 | -1/+1 |
| | | | | reduce the compiled binary size. | ||||
* | Added board hardware driver support for the Arduino Uno development board. | Dean Camera | 2010-09-28 | 1 | -1/+1 |
| | | | | Fixed incorrect LEDs_ChangeLEDs() function in the Benito board LED driver. | ||||
* | Added board hardware driver support for the BUI development board. | Dean Camera | 2010-09-14 | 1 | -1/+1 |
| | |||||
* | Added board hardware driver support for the UDIP development board. | Dean Camera | 2010-09-14 | 1 | -1/+1 |
| | |||||
* | Remove incomplete MIDIToneGenerator project. | Dean Camera | 2010-09-13 | 1 | -1/+1 |
| | |||||
* | Added new project makefile template to the library and moved board driver ↵ | Dean Camera | 2010-09-11 | 1 | -1/+1 |
| | | | | stub files into in a new CodeTemplates directory. | ||||
* | Added board hardware driver support for the USBFOO development board. | Dean Camera | 2010-09-04 | 1 | -1/+1 |
| | |||||
* | Added board hardware driver support for the Olimex AVR-USB-162 development ↵ | Dean Camera | 2010-09-03 | 1 | -1/+1 |
| | | | | board (thanks to Steve Fawcett). | ||||
* | Split out endpoint and pipe stream functions into new EndpointStream.c/.h ↵ | Dean Camera | 2010-08-22 | 1 | -1/+1 |
| | | | | and PipeStream.c/.h files. | ||||
* | Added start of a low level device Test and Measurement class demo (thanks to ↵ | Dean Camera | 2010-07-22 | 1 | -1/+1 |
| | | | | Peter Lawrence). | ||||
* | Move and rename DevChaper9.c/.h and HostChapter9.c/.h to the HighLevel ↵ | Dean Camera | 2010-07-21 | 1 | -1/+1 |
| | | | | | | | | 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. | ||||
* | Add AVRStudio 4 project files to the ClassDriver Device mode demos. | Dean Camera | 2010-07-13 | 1 | -1/+1 |
| | |||||
* | Add AVRStudio 4 project files to the LowLevel Device mode demos. | Dean Camera | 2010-07-13 | 1 | -1/+1 |
| | |||||
* | Add AVRStudio 4 project files to the ClassDriver Host mode demos. | Dean Camera | 2010-07-13 | 1 | -1/+1 |
| | |||||
* | Add AVRStudio 4 project files to the LowLevel Host mode demos. | Dean Camera | 2010-07-13 | 1 | -1/+1 |
| | |||||
* | Add AVRStudio 4 project files for the library bootloaders. | Dean Camera | 2010-07-13 | 1 | -1/+1 |
| | |||||
* | Add remaining AVRStudio project files to the library projects. | Dean Camera | 2010-07-13 | 1 | -1/+1 |
| | |||||
* | Add first lot of AVRStudio project files for some of the library projects. | Dean Camera | 2010-07-13 | 1 | -1/+1 |
| | |||||
* | Rename the AVRISP main source files to AVRISP-MKII so that it matches the ↵ | Dean Camera | 2010-07-13 | 1 | -1/+1 |
| | | | | project name. Add AVRStudio project file for the AVRISP-MKII project. | ||||
* | Move out Bluetooth stack callback functions to a seperate ↵ | Dean Camera | 2010-07-08 | 1 | -1/+1 |
| | | | | BluetoothEvents.c/.h set of files for clarity in the Incomplete BluetoothHost demo. Add a new stack callback for opened ACL channels, make the demo save the RFCOMM channel when opened so that it does not have to search for it on each iteration of the main program loop. |