aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/Webserver/USBHostMode.c
Commit message (Collapse)AuthorAgeFilesLines
* Update copyrights for 2017.Dean Camera2017-04-181-2/+2
|
* Update copyrights to 2016.Dean Camera2016-01-311-2/+2
|
* Update copyrights to 2015 (better late than never).Dean Camera2015-05-171-2/+2
|
* Update copyrights for 2014.Dean Camera2014-01-041-2/+2
|
* Update copyright year to 2013.Dean Camera2013-01-031-2/+2
|
* Minor documentation improvements.Dean Camera2012-10-051-1/+1
|
* Reintegrate the FullEPAddresses development branch into trunk.Dean Camera2012-04-141-10/+16
|
* Update file contributor copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Update file header copyrights for 2012.Dean Camera2012-02-041-1/+1
|
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-231-1/+1
| | | | trailing whitespace at the end of each line.
* Add missing device deconfiguration-on-error statements to the host mode ↵Dean Camera2011-07-081-0/+3
| | | | demos and projects.
* Updated all host mode demos and projects to use the ↵Dean Camera2011-07-081-67/+51
| | | | | | | | | | | | | | EVENT_USB_Host_DeviceEnumerationComplete() event callback for device configuration instead of manual host state machine manipulations in the main application task. Added new USB_Host_ConfigurationNumber global variable to indicate the selected configuration in an attached device. Renamed global state variables that are specific to a certain USB mode to clearly indicate which mode the variable relates to, by changing the USB_* prefix to USB_Device_* or USB_Host_*. Removed the HOST_STATE_WaitForDeviceRemoval and HOST_STATE_Suspended host state machine states, as these are no longer required. Altered the USB_Host_SetDeviceConfiguration() function to update the new USB_Host_ConfigurationNumber global as required. Moved out the Host mode standard request convenience/helper functions from the architecture specific Host driver files to the architecture agnostic HostStandardReq.c driver file.
* Add RNDIS Device support to the Webserver project, so that the files stored ↵Dean Camera2011-05-221-6/+6
| | | | on the device can be viewed from a web-browser while the board is plugged into a host machine.
* Renamed all driver termination *_ShutDown() functions to the more logical ↵Dean Camera2011-01-301-1/+1
| | | | name *_Disable().
* Update copyright year on all source files.Dean Camera2011-01-011-2/+2
|
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-281-1/+1
| | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-131-17/+18
| | | | tool made by Laszlo Monda
* Fix Webserver project code not compiling due to the changes to the USB mode ↵Dean Camera2010-10-121-1/+1
| | | | selection constant names.
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-081-178/+178
| | | | correctly converted to the target system's native end of line style.
* Turn OFF double banking in the Webserver demo - leaving it on seems to ↵Dean Camera2010-02-181-2/+2
| | | | destroy the system throughput.
* Add TCP retransmission support to the HTTP webserver in the Webserver ↵Dean Camera2010-01-291-2/+2
| | | | project, so that lost segments are retransmitted as needed.
* Add FatFS library to the Webserver project, extend the HTTP server so that ↵Dean Camera2010-01-281-0/+178
it now serves files from the Dataflash. Add Mass Storage device mode class driver so that files can be loaded to the board Dataflash when inserted into a PC.