aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/Webserver/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Changed the XPLAINBridge software UART to use the regular CTC mode instead ↵Dean Camera2010-11-251-1/+1
| | | | of the alternative CTC mode via the Input Capture register, to reduce user confusion.
* Added board hardware driver support for the Adafruit U4 breakout board.Dean Camera2010-11-081-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).
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-2812-12/+12
| | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
* All USB class drivers are now automatically included when LUFA/Drivers/USB.h ↵Dean Camera2010-10-243-4/+2
| | | | | | 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.
* Minor documentation corrections.Dean Camera2010-10-131-2/+2
|
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-1330-390/+420
| | | | 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.
* Clarify in the project documentation files what the each of the different ↵Dean Camera2010-08-311-3/+3
| | | | USB AVR device "series" comprises of.
* Fixed MassStorage based demos and projects resetting the SCSI sense values ↵Dean Camera2010-08-182-31/+67
| | | | | | before the command is executed, leading to missed SCSI sense values when the host retrieves the sense key (thanks to Martin Degelsegger). Added missing DataflashManager_CheckDataflashOperation() function to the MassStorageKeyboard demo, removed redundant SCSI_Codes.h file as these values are part of the MassStorage Class Driver.
* Oops - fix mixed "initialize" and "initialise" - opt for American spelling ↵Dean Camera2010-07-302-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-304-19/+19
| | | | EN-GB spelling dictionary.
* Spell check more of the third party libraries used by LUFA.Dean Camera2010-07-304-21/+21
|
* Spell check all source files once again to find any typos.Dean Camera2010-07-2911-91/+91
|
* Update all demos, projects and bootloaders to indent all function ↵Dean Camera2010-07-216-20/+46
| | | | | | parameters, one per line, for better readability. Add missing const qualifiers to the demos.
* Update makefiles to use the latest WinAVR/Atmel toolchain makefile template.Dean Camera2010-07-191-8/+2
| | | | Add new module source variables to the library core makefile, so that module sources can be added to a project's makefile on a per-module rather than per-file basis.
* Disable strict aliasing explicitly in the project makefiles, as this is ↵Dean Camera2010-07-151-2/+2
| | | | apparently enabled by default in newer AVR-GCC builds, and aliasing is used heavily for type-punning through the LUFA and third party library's codebase.
* Fix pointer aliasing warning in the Mass Storage demos.Dean Camera2010-07-151-3/+2
|
* Rewrote the implementation of the SwapEndian_16() and SwapEndian_32() ↵Dean Camera2010-07-091-3/+3
| | | | | | 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().
* Update TemperatureDataLogger and Webserver projects to the latest FATFS ↵Dean Camera2010-06-145-1000/+1441
| | | | library version.
* More documentation fixes.Dean Camera2010-06-031-2/+2
|
* Minor documentation cleanups.Dean Camera2010-06-033-27/+27
|
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-0830-12419/+12419
| | | | correctly converted to the target system's native end of line style.
* Change over unix line-endings to dos line endings.Dean Camera2010-05-0713-5873/+5873
|
* Add const keyword to the demo function parameters where possible.Dean Camera2010-04-186-20/+20
|
* Added ENABLE_TELNET_SERVER compile time option to the Webserver project to ↵Dean Camera2010-03-105-22/+35
| | | | | | disable the TELNET server if desired. Change over static strings in the Webserver project to use PROGMEM where possible.
* Fix incorrect LED mask name in the Webserver project.Dean Camera2010-03-091-1/+1
| | | | Fix missing text from the Host Mode States enum documentation.
* Webserver project now uses the board LEDs to indicate the current IP ↵Dean Camera2010-03-094-3/+11
| | | | | | configuration state. Don't double-read data from the attached disk in the incomplete StandaloneProgrammer project when in host mode.
* Commit for the 100219 release.Dean Camera2010-02-192-12/+10
|
* Use a temporary variable to hold the current URI length in the Webserver, ↵Dean Camera2010-02-183-13/+12
| | | | rather than calling strlen() multiple times on an unchanged buffer. Clean up uip-split.c.
* Add uIP-split code to the Webserver project, so that each packet is split in ↵Dean Camera2010-02-186-66/+309
| | | | half to avoid the delayed-ACK problem when communicating with other devices. Condense HTTP server code, so that the HTTP headers are all sent from the one state. Make default filename append to any directory URI, rather than just the root directory.
* Oops - missing brackets in the declaration of a string in TELNETServerApp.c.Dean Camera2010-02-151-1/+1
|
* Speed up Webserver demo data rate by not sending a full ethernet frame each ↵Dean Camera2010-02-125-37/+19
| | | | time, preventing the receiver from using a delayed ACK scheme which slows down the connection. TELNET server cleanup.
* Move DHCP negotiation timer into the DHCP connection application state ↵Dean Camera2010-02-127-42/+44
| | | | structure, so that each connection gets its own timeout counter (only one connection currently used, but this way is more correct). Add const correctness to static data in the TELNETServerApp.c and HTTPServerApp.c files.
* Fix DHCPClient init code in the Webserver project writing to the incorrect ↵Dean Camera2010-02-122-11/+12
| | | | application state location (thanks to Mike Alexander).
* 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.
* Make Webserver allow HTTP requests for files with up to 50 characters in the ↵Dean Camera2010-02-073-3/+3
| | | | | | path instead of 30, to be in synch with the project documentation. Change Webserver project's ENABLE_DHCP compile time option to ENABLE_DHCP_CLIENT to more accurately indicate its function.
* New BOARD value option BOARD_NONE (equivelent to not specifying BOARD) which ↵Dean Camera2010-02-046-14/+14
| | | | | | 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.
* Re-add Webserver uIP application polling, apply patch to uIP by Andrew Ruder ↵Dean Camera2010-02-032-0/+17
| | | | to fix corrupt TCP streams when multiple applications are used and the applications are polled for more data.
* Fix TELNET server locking up if an invalid command was issued.Dean Camera2010-02-033-19/+7
|
* Disable uIP connection polling for now - this seems to corrupt the buffers.Dean Camera2010-02-033-9/+8
|
* Add a TELNET server to the webserver project, which currently can list ↵Dean Camera2010-02-0311-100/+375
| | | | active TCP connections.
* Exclude FATFs from the Webserver project documentation. Rename the functions ↵Dean Camera2010-02-035-51/+47
| | | | in the HTTPServerApp.c/.h files so that they use the correct "HTTPServerApp_" prefix, and not "Webserver_".
* Minor fixups to the documentation and preprocessor tokens.Dean Camera2010-02-022-4/+4
|
* Remove now unused conf directory from the uIP stack in the Webserver project.Dean Camera2010-02-025-223/+0
|
* Replace the Webserver demo's uIP with the latest code ripped from the ↵Dean Camera2010-02-0225-3202/+1144
| | | | Contiki project by Adam Dunkels.
* Make packet processing code in the Webserver project a bit neater using a ↵Dean Camera2010-02-021-27/+30
| | | | switch statement instead of an if-else-if chain.
* Make TPI programming protocol program in words, not bytes to satisfy the ↵Dean Camera2010-02-021-2/+2
| | | | datasheet conditions.
* Fixed Pipe_IsEndpointBound() function not taking the endpoint's direction ↵Dean Camera2010-02-011-16/+14
| | | | | | 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.
* Clean up HTTP webserver code in the Webserver project, so that it follows ↵Dean Camera2010-01-315-139/+189
| | | | the uIP application structure guidelines and uses cleaner state machine based code.
* Better HTTP GET parsing in the Webserver demo, add application polling.Dean Camera2010-01-314-42/+46
|