Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add svn:eol-style property to source files, so that the line endings are ↵ | Dean Camera | 2010-05-08 | 1 | -221/+221 |
| | | | | correctly converted to the target system's native end of line style. | ||||
* | Removed software PDI/TPI emulation from the AVRISP-MKII clone project, as it ↵ | Dean Camera | 2010-05-04 | 1 | -242/+1 |
| | | | | was very buggy. PDI and TPI must now be implemented via seperate headers instead of the one unified ISP/TPI/PDI header. | ||||
* | Added new ENDPOINT_*_BusSuspended error code to the Endpoint function, so ↵ | Dean Camera | 2010-05-03 | 1 | -2/+2 |
| | | | | that the stream functions early-abort if the bus is suspended before or during a transfer. | ||||
* | Switch back to C based timeout ISR in the AVRISP project - assembly version ↵ | Dean Camera | 2010-05-02 | 1 | -0/+13 |
| | | | | was failing, and only one or two cycles could be shaved off the compiler generated code. | ||||
* | Change AVRISP project's timeout to be interrupt based again, but make the ↵ | Dean Camera | 2010-05-02 | 1 | -52/+6 |
| | | | | | | 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). | ||||
* | Make sure that long reads are aborted early if the connection times out ↵ | Dean Camera | 2010-04-30 | 1 | -0/+3 |
| | | | | while waiting on more bytes in the AVRISP MKII clone project. | ||||
* | Make sure that the NVM bus/controller busy waits in the AVRISP MKII clone ↵ | Dean Camera | 2010-04-30 | 1 | -11/+22 |
| | | | | project abort properly if a timeout occurs while waiting for a response. | ||||
* | Make AVRISP-MKII clone project's software PDI/TPI mode more robust by ↵ | Dean Camera | 2010-04-28 | 1 | -14/+25 |
| | | | | keeping track of timeouts while waiting for a Tx/Rx to finish. | ||||
* | Remove redundant check in the software PDI programming code of the AVRISP ↵ | Dean Camera | 2010-03-17 | 1 | -4/+0 |
| | | | | project. | ||||
* | Software PDI mode breaks unless the software USART has 100 cycles between bits. | Dean Camera | 2010-03-17 | 1 | -5/+7 |
| | |||||
* | Don't enable the pullup on the target /RESET line in the AVRISP project for ↵ | Dean Camera | 2010-03-16 | 1 | -4/+3 |
| | | | | 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. | ||||
* | Fixed PDI programming mode in the AVRISP programmer project not exiting ↵ | Dean Camera | 2010-03-16 | 1 | -15/+6 |
| | | | | | | 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. | ||||
* | Fixed software PDI/TPI programming mode in the AVRISP project not correctly ↵ | Dean Camera | 2010-02-23 | 1 | -2/+2 |
| | | | | | | toggling just the clock pin. Fix broken AVR8 Serial peripheral driver. | ||||
* | Oops - need to revert changes made to ease testing of the software PDI ↵ | Dean Camera | 2010-02-21 | 1 | -0/+1 |
| | | | | programming mode. | ||||
* | Remove dual ISR for software PDI mode, use a single ISR instead to reduce ↵ | Dean Camera | 2010-02-21 | 1 | -41/+33 |
| | | | | code complexity. | ||||
* | More fixes to the AVRISP command timeout system so that it should no longer ↵ | Dean Camera | 2010-02-21 | 1 | -3/+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 | -36/+82 |
| | | | | a doubling of the software USART speed for PDI and TPI programming. | ||||
* | Use _delay_us() function in the XPROGTarget.c file to ensure timing ↵ | Dean Camera | 2010-01-31 | 1 | -9/+5 |
| | | | | requirements are met, rather than a fixed number of NOPs. | ||||
* | Oops - PDI handshake delay was too long, causing the device's /RESET ↵ | Dean Camera | 2010-01-31 | 1 | -4/+8 |
| | | | | functionality to be re-enabled. | ||||
* | Fix TPI communications in the AVRISP project when bit-banged USART mode is ↵ | Dean Camera | 2010-01-29 | 1 | -5/+5 |
| | | | | selected. | ||||
* | Ensure TPI enable timing requirements are met in AVRISP-MKII programmer. ↵ | Dean Camera | 2010-01-27 | 1 | -10/+7 |
| | | | | Remove invalid code in the TPI read/write functions. | ||||
* | Manually pull PDI clock pin high for 1ms before disabling PDI mode in the ↵ | Dean Camera | 2010-01-27 | 1 | -0/+8 |
| | | | | AVRISP-MKII project, to ensure that the PDI bus is disabled in the target and /RESET functionality restored. | ||||
* | Minor code cleanups, remove TemperatureDataLogger host application's Visual ↵ | Dean Camera | 2010-01-25 | 1 | -1/+1 |
| | | | | Studio Solution files, add LibHIDNet license files. | ||||
* | Update Doxygen configuration files to the latest Doxygen version. | Dean Camera | 2010-01-06 | 1 | -2/+2 |
| | |||||
* | Added support to the MIDI Class drivers for packed data, where multiple MIDI ↵ | Dean Camera | 2010-01-05 | 1 | -0/+6 |
| | | | | events are packed into a single USB packet. Added new MIDI Class driver flush routines to override packing behaviour. | ||||
* | Update copyright year to 2010. | Dean Camera | 2009-12-30 | 1 | -2/+2 |
| | |||||
* | Reduced guard bit time in the AVRISP project PDI/TPI protocols to reduce the ↵ | Dean Camera | 2009-12-29 | 1 | -1/+1 |
| | | | | time needed to reverse the data communication direction. | ||||
* | Fixed AVRISP PDI race condition where the guard time between direction ↵ | Dean Camera | 2009-12-29 | 1 | -62/+75 |
| | | | | changes could be interpreted as a start bit. Fixed TPI interface lines not being changed correctly when in bit-banged TPI mode. | ||||
* | Change the AVRISP project's RESET LINE makefile tokens to AUX LINE, as it is ↵ | Dean Camera | 2009-12-29 | 1 | -4/+4 |
| | | | | not always used for target reset. | ||||
* | Fix MIT license language to make its intent clearer. | Dean Camera | 2009-12-28 | 1 | -7/+7 |
| | |||||
* | Fix mistakes in the XPROGTarget.c/.h files for TPI mode software USART clock ↵ | Dean Camera | 2009-12-27 | 1 | -17/+13 |
| | | | | rate and PDI mode XPLAIN board autoconfiguration. | ||||
* | Rename AVRISP project folder to AVRISP-MKII. | Dean Camera | 2009-12-27 | 1 | -0/+420 |