- Mar 22, 2010
-
-
Dean Camera authored
Standardized the naming scheme given to configuration descriptor sub-elements in the Device mode demos, bootloaders and projects. Fix errors in the MouseHostWithParser demo from incorrect use of the HID_ALIGN_DATA() macro.
-
- Mar 21, 2010
-
-
Dean Camera authored
Double bank CDC endpoints in the XPLAIN Bridge project, re-enable JTAG once the mode selection pin has been sampled.
-
- Mar 17, 2010
-
-
Dean Camera authored
-
Dean Camera authored
-
- Mar 16, 2010
-
-
Dean Camera authored
Increased throughput of the USBtoSerial demo on systems that send multiple bytes per packet (thanks to Opendous Inc.).
-
Dean Camera authored
Don't enable the pullup on the target /RESET line in the AVRISP project for PDI mode - clearing the XMEGA's reset control register twice is enough to release it from reset. Possible silicon bug, since the official Atmel programmers have the same issue.
-
Dean Camera authored
Fixed PDI programming mode in the AVRISP programmer project not exiting programming mode correctly (clear target Reset key twice, set /RESET pin to pullup). Add newlines to the MIDI event printf() statements in the MIDI host demos.
-
- Mar 10, 2010
-
-
Dean Camera authored
Added ENABLE_TELNET_SERVER compile time option to the Webserver project to disable the TELNET server if desired. Change over static strings in the Webserver project to use PROGMEM where possible.
-
- Mar 09, 2010
-
-
Dean Camera authored
Fix missing text from the Host Mode States enum documentation.
-
Dean Camera authored
Don't double-read data from the attached disk in the incomplete StandaloneProgrammer project when in host mode.
-
- Feb 24, 2010
-
-
Dean Camera authored
Added a timeout value to the TWI_StartTransmission() function, within which the addressed device must respond. Fixed TWI_StartTransmission() corrupting the contents of the GPIOR0 register.
-
Dean Camera authored
-
- Feb 23, 2010
-
-
Dean Camera authored
Update Temperature board driver to be AVR32 compatible when the ADC peripheral driver is eventually ported. Make architecture includes explicit for both the AVR32 and the AVR8, to make way for future architecture ports. Add SPI driver aliases for the old function names in the AVR8 driver, so that existing code will still compile against the new version.
-
Dean Camera authored
Fixed software PDI/TPI programming mode in the AVRISP project not correctly toggling just the clock pin. Fix broken AVR8 Serial peripheral driver.
-
- Feb 21, 2010
-
-
Dean Camera authored
-
Dean Camera authored
-
Dean Camera authored
More fixes to the AVRISP command timeout system so that it should no longer lock up while processing command no matter what the conditions.
-
Dean Camera authored
-
- Feb 20, 2010
-
-
Dean Camera authored
Oops - missed a few references to the old global TimeoutMSRemaining counter in ISPTarget.c of the AVRISP-MKII clone project.
-
- Feb 19, 2010
-
-
Dean Camera authored
AVRISP programmer project now has a more robust timeout system, allowing for a doubling of the software USART speed for PDI and TPI programming.
-
Dean Camera authored
-
- Feb 18, 2010
-
-
Dean Camera authored
Use a temporary variable to hold the current URI length in the Webserver, rather than calling strlen() multiple times on an unchanged buffer. Clean up uip-split.c.
-
Dean Camera authored
Turn OFF double banking in the Webserver demo - leaving it on seems to destroy the system throughput.
-
Dean Camera authored
Add uIP-split code to the Webserver project, so that each packet is split in 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.
-
- Feb 16, 2010
-
-
Dean Camera authored
-
- Feb 15, 2010
-
-
Dean Camera authored
-
Dean Camera authored
Add missing TWI_Init() call to the TemperatureDataLogger project. Make DUMMY_RTC compile time option the default, so that it works correctly on the USBKEY and other Atmel boards out of the box.
-
- Feb 13, 2010
-
-
Dean Camera authored
Add NO_VTARGET_DETECT compile time option to the AVRISP-MKII clone project, to disable VTARGET detection on AVR models with an on-chip ADC.
-
- Feb 12, 2010
-
-
Dean Camera authored
Speed up Webserver demo data rate by not sending a full ethernet frame each time, preventing the receiver from using a delayed ACK scheme which slows down the connection. TELNET server cleanup.
-
Dean Camera authored
Move DHCP negotiation timer into the DHCP connection application state 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.
-
Dean Camera authored
Fix DHCPClient init code in the Webserver project writing to the incorrect application state location (thanks to Mike Alexander).
-
- Feb 10, 2010
-
-
Dean Camera authored
Fixed lack of SECTION ERASE command in TPI programming mode of the AVRISP project preventing fuses from being cleared.
-
Dean Camera authored
Added .5MHz recovery clock to the AVRISP programmer project when in ISP programming mode to correct mis-set fuses. Fixed AVRISP project not extending the command delay after each successful page/word/byte program.
-
- Feb 09, 2010
-
-
Dean Camera authored
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.
-
- Feb 08, 2010
-
-
Dean Camera authored
Fix LowLevel Keyboard demo -- accidentally trying to dereference a uint8_t type in ProcessLEDReport().
-
Dean Camera authored
Fix AVRISP-MKII clone project's TPI Chip Erase command processing - ensure erase location is the high byte in the given address space, check NVMBUSY for completion rather than the NVM Bus Enable bit. Change If-Else chains over to switch statements in XPROGProtocol.c for clarity.
-
- Feb 07, 2010
-
-
Dean Camera authored
Make Webserver allow HTTP requests for files with up to 50 characters in the 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.
-
- Feb 04, 2010
-
-
Dean Camera authored
New BOARD value option BOARD_NONE (equivelent to not specifying BOARD) which 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.
-
- Feb 03, 2010
-
-
Dean Camera authored
Re-add Webserver uIP application polling, apply patch to uIP by Andrew Ruder to fix corrupt TCP streams when multiple applications are used and the applications are polled for more data.
-
Dean Camera authored
-