Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | AppConfigHeaders: Update several additional user projects to use ↵ | Dean Camera | 2012-05-12 | 1 | -0/+2 |
| | | | | configuration header files, rather than makefile defines. Remove compile time warnings for projects lacking device serial support, remove incomplete StandaloneProgrammer project. | ||||
* | Added Class, ClassDevice, ClassHost and ClassCommon to the internal class ↵ | Dean Camera | 2011-11-18 | 1 | -1/+1 |
| | | | | driver source filenames to prevent ambiguities. | ||||
* | Massive corrections to the project documentation and code comments, thanks ↵ | Dean Camera | 2011-06-05 | 3 | -5/+5 |
| | | | | to Russian translation services provided by Andrey from Microsin.ru. | ||||
* | Add RNDIS Device support to the Webserver project, so that the files stored ↵ | Dean Camera | 2011-05-22 | 2 | -7/+18 |
| | | | | on the device can be viewed from a web-browser while the board is plugged into a host machine. | ||||
* | Move global interrupt enable/disable functions out to Common.h and document ↵ | Dean Camera | 2011-04-08 | 1 | -5/+4 |
| | | | | them. | ||||
* | Add in a new common Delay_MS() function, which provides a blocking delay for ↵ | Dean Camera | 2011-04-08 | 1 | -4/+3 |
| | | | | | | | | all architectures. Remove use of avr-libc specific ATOMIC_BLOCK, replace with a new per-architecture set of inline functions to retrieve and manipulate the global interrupt enable bit for each architecture. Add in documentation for the USB controller common interrupt routine which must be linked to the interrupt controller in the user application on the AVR32 UC3 architecture. | ||||
* | Changed the XPLAINBridge software UART to use the regular CTC mode instead ↵ | Dean Camera | 2010-11-25 | 1 | -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 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). | ||||
* | Clean up excessive whitespace at the end of each line using the wspurify ↵ | Dean Camera | 2010-10-13 | 11 | -147/+158 |
| | | | | tool made by Laszlo Monda | ||||
* | Oops - fix mixed "initialize" and "initialise" - opt for American spelling ↵ | Dean Camera | 2010-07-30 | 1 | -1/+1 |
| | | | | due to its wide use in technical standards. | ||||
* | More spell checking of all source files -- correct missed errors, switch to ↵ | Dean Camera | 2010-07-30 | 2 | -13/+13 |
| | | | | EN-GB spelling dictionary. | ||||
* | Spell check more of the third party libraries used by LUFA. | Dean Camera | 2010-07-30 | 1 | -6/+6 |
| | |||||
* | Spell check all source files once again to find any typos. | Dean Camera | 2010-07-29 | 3 | -3/+3 |
| | |||||
* | Add svn:eol-style property to source files, so that the line endings are ↵ | Dean Camera | 2010-05-08 | 11 | -5887/+5887 |
| | | | | correctly converted to the target system's native end of line style. | ||||
* | Change over unix line-endings to dos line endings. | Dean Camera | 2010-05-07 | 11 | -5871/+5871 |
| | |||||
* | Use a temporary variable to hold the current URI length in the Webserver, ↵ | Dean Camera | 2010-02-18 | 1 | -4/+0 |
| | | | | 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 Camera | 2010-02-18 | 2 | -0/+248 |
| | | | | 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. | ||||
* | Speed up Webserver demo data rate by not sending a full ethernet frame each ↵ | Dean Camera | 2010-02-12 | 1 | -1/+1 |
| | | | | 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 Camera | 2010-02-12 | 1 | -1/+4 |
| | | | | 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 Camera | 2010-02-12 | 1 | -1/+0 |
| | | | | application state location (thanks to Mike Alexander). | ||||
* | Make Webserver allow HTTP requests for files with up to 50 characters in the ↵ | Dean Camera | 2010-02-07 | 1 | -1/+1 |
| | | | | | | 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. | ||||
* | Re-add Webserver uIP application polling, apply patch to uIP by Andrew Ruder ↵ | Dean Camera | 2010-02-03 | 1 | -0/+2 |
| | | | | to fix corrupt TCP streams when multiple applications are used and the applications are polled for more data. | ||||
* | Add a TELNET server to the webserver project, which currently can list ↵ | Dean Camera | 2010-02-03 | 3 | -21/+45 |
| | | | | active TCP connections. | ||||
* | Exclude FATFs from the Webserver project documentation. Rename the functions ↵ | Dean Camera | 2010-02-03 | 2 | -34/+30 |
| | | | | in the HTTPServerApp.c/.h files so that they use the correct "HTTPServerApp_" prefix, and not "Webserver_". | ||||
* | Remove now unused conf directory from the uIP stack in the Webserver project. | Dean Camera | 2010-02-02 | 5 | -223/+0 |
| | |||||
* | Replace the Webserver demo's uIP with the latest code ripped from the ↵ | Dean Camera | 2010-02-02 | 22 | -3196/+1137 |
| | | | | Contiki project by Adam Dunkels. | ||||
* | Clean up HTTP webserver code in the Webserver project, so that it follows ↵ | Dean Camera | 2010-01-31 | 1 | -6/+7 |
| | | | | the uIP application structure guidelines and uses cleaner state machine based code. | ||||
* | Better HTTP GET parsing in the Webserver demo, add application polling. | Dean Camera | 2010-01-31 | 1 | -1/+1 |
| | |||||
* | Add TCP retransmission support to the HTTP webserver in the Webserver ↵ | Dean Camera | 2010-01-29 | 1 | -1/+4 |
| | | | | project, so that lost segments are retransmitted as needed. | ||||
* | Add MIME type handling to the Webserver project, so that files of different ↵ | Dean Camera | 2010-01-29 | 1 | -0/+1 |
| | | | | types (e.g. images) can be served out to HTTP clients. | ||||
* | Add FatFS library to the Webserver project, extend the HTTP server so that ↵ | Dean Camera | 2010-01-28 | 1 | -1/+4 |
| | | | | 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. | ||||
* | Clean up Webserver project - add more Doxygen documentation for the new DHCP ↵ | Dean Camera | 2010-01-27 | 1 | -0/+6 |
| | | | | client functions and defines. | ||||
* | Add DHCP server to the Webserver demo for automatic network configuration. ↵ | Dean Camera | 2010-01-27 | 4 | -14/+22 |
| | | | | Correct uIP timer clock not tracking the correct timespan. | ||||
* | Moved initial completed version of the Webserver project out of the ↵ | Dean Camera | 2010-01-25 | 28 | -0/+7879 |
Projects/Incomplete directory. |