Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | AppConfigHeaders: Update several user projects to use configuration header ↵ | Dean Camera | 2012-05-10 | 1 | -1/+2 |
| | | | | files, rather than makefile defines. | ||||
* | Reverted AVRISP-MKII clone project watchdog based command timeout patch in ↵ | Dean Camera | 2012-04-01 | 1 | -2/+2 |
| | | | | favour of a hardware timer, to allow for use in devices with WDTRST fuse programmed. | ||||
* | Update file contributor copyrights for 2012. | Dean Camera | 2012-02-04 | 1 | -1/+1 |
| | |||||
* | Update file header copyrights for 2012. | Dean Camera | 2012-02-04 | 1 | -1/+1 |
| | |||||
* | Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵ | Dean Camera | 2011-12-23 | 1 | -3/+3 |
| | | | | trailing whitespace at the end of each line. | ||||
* | Fixed AVRISP-MKII Clone compile warning on AVR8 U4 targets even when ↵ | Dean Camera | 2011-10-18 | 1 | -1/+1 |
| | | | | NO_VTARGET_DETECT is enabled. | ||||
* | Added new VTARGET_USE_INTERNAL_REF configuration option to the AVRISP-MKII ↵ | Dean Camera | 2011-07-26 | 1 | -0/+9 |
| | | | | clone project (thanks to Volker Bosch). | ||||
* | Oops - revert commit of an incomplete port of the AVRISP-MKII project. | Dean Camera | 2011-05-29 | 1 | -12/+9 |
| | |||||
* | Added new incomplete AudioInputHost Host LowLevel demo. | Dean Camera | 2011-05-29 | 1 | -9/+12 |
| | | | | | | Added missing Audio class control request definitions. Added support for the Audio class GET STATUS request so that it is correctly ACKed when sent by the host. | ||||
* | Changed AVRISP-MKII project to use the Watchdog interrupt for command ↵ | Dean Camera | 2011-01-22 | 1 | -2/+3 |
| | | | | timeouts, to reduce CPU usage and free timer 0 for other uses in the future. | ||||
* | Added new ADC_GET_CHANNEL_MASK() convenience macro to the ADC driver. | Dean Camera | 2011-01-16 | 1 | -6/+1 |
| | |||||
* | Update copyright year on all source files. | Dean Camera | 2011-01-01 | 1 | -2/+2 |
| | |||||
* | Rename incorrectly named XPROGTarget_SendBreak() function to ↵ | Dean Camera | 2010-11-17 | 1 | -0/+3 |
| | | | | XPROGTarget_SendIdle(), as it is sending idle bits and not break bits. | ||||
* | Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵ | Dean Camera | 2010-10-28 | 1 | -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 Camera | 2010-10-13 | 1 | -12/+12 |
| | | | | tool made by Laszlo Monda | ||||
* | Added compile time error to the AVRISP-MKII project when built for the U4 ↵ | Dean Camera | 2010-08-22 | 1 | -0/+4 |
| | | | | chips, as the default VTARGET detection ADC channel does not exist on these chips (thanks to Marco). | ||||
* | Remove obsolete macros and preprocessor checks from the AVRISP-MKII ↵ | Dean Camera | 2010-07-29 | 1 | -29/+16 |
| | | | | project's V2Protocol command handler header file. | ||||
* | Change AVRISP-MKII and XPLAINBridge descriptors to indicate that the device ↵ | Dean Camera | 2010-07-13 | 1 | -1/+1 |
| | | | | is bus-powered only. Add compile time options to reduce the compiled size of the firmware. | ||||
* | Remove the timeout period extension code from the AVRISP project, as no ↵ | Dean Camera | 2010-07-13 | 1 | -3/+3 |
| | | | | single command should ever exceed the maximum timeout period. Extend timeout period to 1 second per command, so that an accidental timeout will never occur. | ||||
* | Minor documentation cleanups. | Dean Camera | 2010-06-03 | 1 | -4/+4 |
| | |||||
* | Fixed AVRISP project sending a LOAD EXTENDED ADDRESS command to 128KB AVRs ↵ | Dean Camera | 2010-05-14 | 1 | -1/+1 |
| | | | | after programming or reading from the last page of FLASH. | ||||
* | Add svn:eol-style property to source files, so that the line endings are ↵ | Dean Camera | 2010-05-08 | 1 | -105/+105 |
| | | | | correctly converted to the target system's native end of line style. | ||||
* | Change AVRISP project's timeout to be interrupt based again, but make the ↵ | Dean Camera | 2010-05-02 | 1 | -19/+25 |
| | | | | | | interrupt itself interruptable and use a seperate assembly file to hand-optimize the ISR code. Removed the cast to uint16_t on the set baud rate in the USBtoSerial project, so that the higher >1M baud rates can be selected (thanks to Steffan). | ||||
* | Added WIN_LIBUSB_COMPAT compile time option to the AVRISP programmer project ↵ | Dean Camera | 2010-03-31 | 1 | -0/+6 |
| | | | | to make the code compatible with Windows builds of avrdude at the expense of AVRStudio compatibility. | ||||
* | More fixes to the AVRISP command timeout system so that it should no longer ↵ | Dean Camera | 2010-02-21 | 1 | -0/+6 |
| | | | | lock up while processing command no matter what the conditions. | ||||
* | AVRISP programmer project now has a more robust timeout system, allowing for ↵ | Dean Camera | 2010-02-19 | 1 | -6/+0 |
| | | | | a doubling of the software USART speed for PDI and TPI programming. | ||||
* | Make AVRISP XPROG function parameters const where possible. | Dean Camera | 2010-02-01 | 1 | -2/+2 |
| | |||||
* | Added explicit ADC channel masks for the standard set of ADC channels, as ↵ | Dean Camera | 2010-01-25 | 1 | -3/+11 |
| | | | | the single-ended channel MUX masks are not equal to the channel number on some AVR models. Changed demos to use the new channel masks when using the ADC driver. | ||||
* | Changed XPLAINBridge project to be both a USB to USART bridge and a PDI ↵ | Dean Camera | 2010-01-19 | 1 | -0/+1 |
| | | | | programmer, based on the state of a mode select pin. | ||||
* | Update copyright year to 2010. | Dean Camera | 2009-12-30 | 1 | -2/+2 |
| | |||||
* | Fix MIT license language to make its intent clearer. | Dean Camera | 2009-12-28 | 1 | -20/+20 |
| | |||||
* | Rename AVRISP project folder to AVRISP-MKII. | Dean Camera | 2009-12-27 | 1 | -0/+84 |