Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove obsolete entry from the Doxygen configuration files. | Dean Camera | 2010-05-23 | 1 | -1/+1 |
| | |||||
* | Add svn:eol-style property to source files, so that the line endings are ↵ | Dean Camera | 2010-05-08 | 5 | -2653/+2653 |
| | | | | correctly converted to the target system's native end of line style. | ||||
* | Change over instances of "make" in the makefiles to "$(MAKE)" to allow for ↵ | Dean Camera | 2010-05-07 | 1 | -1/+1 |
| | | | | the make tool to be overridden. | ||||
* | Use puts_P() and printf_P() instead of the normal variants where possible in ↵ | Dean Camera | 2010-04-28 | 1 | -11/+11 |
| | | | | the Host mode Class Driver demos. | ||||
* | Relocate USBInterrupt.c/.h from the HighLevel USB driver directory to the ↵ | Dean Camera | 2010-04-28 | 1 | -2/+2 |
| | | | | LowLevel directory as it is hardware-dependent. | ||||
* | USB_Init() no longer calls sei() to enable global interrupts - this must now ↵ | Dean Camera | 2010-04-28 | 2 | -0/+2 |
| | | | | be done in the user application once all init code has run. | ||||
* | All Class Driver Host mode demos now correctly set the board LEDs to READY ↵ | Dean Camera | 2010-03-25 | 1 | -1/+2 |
| | | | | | | 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. | ||||
* | New BOARD value option BOARD_NONE (equivelent to not specifying BOARD) which ↵ | Dean Camera | 2010-02-04 | 1 | -1/+1 |
| | | | | | | 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. | ||||
* | Exlude the "INCLUDE_FROM_*" macros from the individual project's documentation. | Dean Camera | 2010-02-03 | 1 | -1/+2 |
| | |||||
* | Fix up project documentation files' overview tables, so that multiple items ↵ | Dean Camera | 2010-01-28 | 1 | -2/+2 |
| | | | | occupy multiple lines in the same cell, rather than multiple cells. | ||||
* | Add Webserver project Doxygen configuration file and overview document. | Dean Camera | 2010-01-25 | 1 | -1/+1 |
| | | | | Fix Doxygen configuration files' input file exclusion filters. | ||||
* | Update Doxygen configuration files to the latest Doxygen version. | Dean Camera | 2010-01-06 | 1 | -631/+709 |
| | |||||
* | Update copyright year to 2010. | Dean Camera | 2009-12-30 | 2 | -4/+4 |
| | |||||
* | Fix MIT license language to make its intent clearer. | Dean Camera | 2009-12-28 | 2 | -14/+14 |
| | |||||
* | Fixed misnamed SI_Host_USBTask() and SI_Host_ConfigurePipes() functions. | Dean Camera | 2009-11-23 | 1 | -3/+3 |
| | |||||
* | Corrected the name of the misnamed USB_GetDeviceConfigDescriptor() function ↵ | Dean Camera | 2009-11-13 | 1 | -2/+2 |
| | | | | to USB_Host_GetDeviceConfigDescriptor(). | ||||
* | Add optional pipe double banking support to the Host mode Class drivers. | Dean Camera | 2009-11-07 | 1 | -0/+5 |
| | | | | Descriptor processing routines now pass around void pointers rather than uint8_t pointers, as their destination datatype is know well known -- they are just streams of bytes until they are cast to the correct destination type by DESCRIPTOR_CAST. | ||||
* | Fix invalid Event name rule in demo/project makefiles. | Dean Camera | 2009-10-16 | 1 | -1/+1 |
| | |||||
* | Make Audio device demos compatible with AVRs running at 16MHz instead of 8MHz. | Dean Camera | 2009-10-12 | 1 | -3/+2 |
| | | | | Fix up demo documentation device compatibility list to be as general as possible to reduce changes required as Atmel releases more devices within the same USB AVR series. | ||||
* | Application documentation/comment cleanup. | Dean Camera | 2009-10-08 | 1 | -1/+1 |
| | |||||
* | Remove USE_NONSTANDARD_DESCRIPTOR_NAMES compile time token, split out ↵ | Dean Camera | 2009-09-09 | 1 | -2/+1 |
| | | | | | | standard descriptors into seperate USB_Descriptor_* and USB_StdDescriptor_* structures so that both can be used within the one project. Add guard to the HID Host Class driver SetProtocol command, to ensure that the device supports boot protocol mode before issuing the request. | ||||
* | Add Host mode Class driver demo summaries. | Dean Camera | 2009-09-09 | 1 | -0/+65 |
| | |||||
* | Finish Still Image Host class driver. | Dean Camera | 2009-09-09 | 1 | -1/+9 |
| | |||||
* | Add in new invalid event hook check targets to project makefiles to produce ↵ | Dean Camera | 2009-09-06 | 1 | -30/+47 |
| | | | | | | | | compilation errors when invalid event names are used in a project. Re-add in flip, flip-ee, dfu and dfu-ee targets to project makefiles (thanks to Opendous Inc.) Fix allowable F_CPU values comment in project makefiles. | ||||
* | Changed Still Image Host class driver to auto-fill TransactionID element of ↵ | Dean Camera | 2009-09-06 | 1 | -2/+4 |
| | | | | | | | | sent headers depending on the current session state. CDC based demos and project now work under 64 bit versions of Windows (thanks to Ronny Hanson, Thomas Bleeker). The Benito Programmer project now has its own unique VID/PID pair allocated from the Atmel donated LUFA VID/PID pool. | ||||
* | Add StillImage Host Class Driver functions for opening and closing sessions. ↵ | Dean Camera | 2009-09-02 | 1 | -1/+21 |
| | | | | | | Ensure IsActive is set on the interface to allow device functions to run. Fix spelling of "Received" in all source files where it is misspelt "Recieved". | ||||
* | Changed the parameters and behaviour of the USB_GetDeviceConfigDescriptor() ↵ | Dean Camera | 2009-08-31 | 1 | -3/+2 |
| | | | | function so that it now performs size checks and data validations internally, to simplify user code. | ||||
* | Added start of the Still Image Host Class driver demo and driver code. | Dean Camera | 2009-08-30 | 4 | -0/+2459 |
| | | | | Re-enabled building of the Host mode demos ClassDriver directory. | ||||
* | Optimize vendor/product description string display code in MassStorageHost. | Dean Camera | 2009-06-26 | 8 | -3187/+0 |
| | | | | | | | | Remove all Host mode class demos other than the CDCHost class driver demo, so that they can be re-added as they are made once the host mode class framework is designed. Fixed USB_Host_SendControlRequest() not re-suspending the USB bus when initial device ready-wait fails. Fixed USB Pad regulator not being disabled on some AVR models when the USB_OPT_REG_DISABLED option is used. | ||||
* | Fix makefiles -- the auto-addition of -D switches to each LUFA compile time ↵ | Dean Camera | 2009-06-19 | 1 | -5/+5 |
| | | | | option was faulty, due to GNUMake becomming confused by the spaces in the USE_STATIC_OPTIONS lines. Make user add in the switches explicitly instead. | ||||
* | Move LUFA compile time options to a new section in the application makefiles ↵ | Dean Camera | 2009-06-19 | 1 | -3/+8 |
| | | | | for clarity. | ||||
* | Remove hardcoded DOT path from all Doxygen config files. | Dean Camera | 2009-06-16 | 1 | -1/+1 |
| | | | | Better documentation for the MissleLauncher project - add credit to PyLauncher project. | ||||
* | Remove ConfigDescriptor.c/.h files from the ClassDriver Host demos, as they ↵ | Dean Camera | 2009-06-15 | 4 | -269/+2 |
| | | | | will be obsoleted when the Host mode class drivers are complete. Add new StillImage stub class driver common header. | ||||
* | More Doxygen fixes - ensure no undocumented function parameters. | Dean Camera | 2009-06-15 | 1 | -1/+1 |
| | |||||
* | Add host mode USB Class driver stubs, add beginnings of a CDC host class driver. | Dean Camera | 2009-06-14 | 1 | -1/+1 |
| | | | | | | Split out common defines/types from class drivers into a seperate common class driver directory. Make central USB Class driver dispatch headers, used for both device and host modes. | ||||
* | Copy over schedulerless host demos to ClassDrivers directory, for later ↵ | Dean Camera | 2009-06-09 | 10 | -0/+3449 |
| | | | | modification to new Host mode USB class drivers. | ||||
* | Deleted Host ClassDriver demos -- not yet started, faster to rebase new ↵ | Dean Camera | 2009-06-09 | 10 | -3502/+0 |
| | | | | | | ClassDriver demos from the newly schedulerless LowLevel host demos rather than re-convert each demo from the previous scheduler-based implementations. Fixes to MassStorageHost demo to improve compatibility with more USB drives. | ||||
* | Converted Host mode demos to schedulerless. Fixed host mode broken due to ↵ | Dean Camera | 2009-06-08 | 1 | -2/+2 |
| | | | | earlier Start-of-frame event experiments. | ||||
* | Copy existing Host mode demos to new ClassDriver and LowLevel subfolders. | Dean Camera | 2009-06-05 | 10 | -0/+3502 |