Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename AVRISP project folder to AVRISP-MKII. | Dean Camera | 2009-12-27 | 1 | -752/+0 |
| | |||||
* | Remove missed timer 0 init code in the ISP protocol handler in the AVRISP ↵ | Dean Camera | 2009-12-27 | 1 | -1/+1 |
| | | | | project. Switch the XPROG protocol target communications handler over to using Timer 1 COMA/COMB ISRs for the two physical layers, rather than COMA/ICR1. Speed up bit-banged USART mode slightly. | ||||
* | Fixed ISP mode in the AVRISP programmer project. | Dean Camera | 2009-12-26 | 1 | -1/+1 |
| | |||||
* | Complete combining of PDI and TPI target communication code files, stub out ↵ | Dean Camera | 2009-12-24 | 1 | -2/+1 |
| | | | | TINY NVM controller functions. | ||||
* | Remove serial driver use from the AVRISP project now that it is no longer ↵ | Dean Camera | 2009-12-24 | 1 | -1/+0 |
| | | | | needed. | ||||
* | Combine PDIProtocol and TPIProtocol into a single XPROGProtocol set of files. | Dean Camera | 2009-12-24 | 1 | -2/+1 |
| | |||||
* | Rename PDIProtocol.c/.h to XPROGProtocol.c/.h as it will now handle both TPI ↵ | Dean Camera | 2009-12-24 | 1 | -2/+1 |
| | | | | and PDI programming. | ||||
* | Combine AVRISP project TPI and PDI lib directories - these protocols use the ↵ | Dean Camera | 2009-12-24 | 1 | -6/+7 |
| | | | | same underlying XPROG wrapper for the host-to-programmer command wrapping. | ||||
* | Correct include paths and makefile for the AVRISP project now that the ↵ | Dean Camera | 2009-12-23 | 1 | -8/+8 |
| | | | | protocol handlers are in seperate directories. | ||||
* | Stub out more of the TPI programming protocol routines in the AVRISP project. | Dean Camera | 2009-12-23 | 1 | -0/+1 |
| | |||||
* | Seperate out XMEGA and TINY NVM routines into seperate files. | Dean Camera | 2009-12-23 | 1 | -0/+1 |
| | |||||
* | Start of implementation of the low level TPI programming protocol in the ↵ | Dean Camera | 2009-12-23 | 1 | -1/+3 |
| | | | | AVRISP project. | ||||
* | Fixed AVRISP project timeouts not checking for the correct timeout period ↵ | Dean Camera | 2009-12-20 | 1 | -1/+1 |
| | | | | (thanks to Carl Ott). | ||||
* | Un-inline the SendAddress function in NVMTarget.c/.h of the AVRISP project. | Dean Camera | 2009-12-17 | 1 | -1/+1 |
| | | | | Add new HotmailNotifier project, which changes a LED's colour based on the user's unread email count as sent from Windows Live Messenger. | ||||
* | More speed and quality improvements to the software USART in the AVRISP project. | Dean Camera | 2009-12-16 | 1 | -1/+1 |
| | |||||
* | Slightly speed up software USART in the AVRISP project - faster parity ↵ | Dean Camera | 2009-12-16 | 1 | -1/+1 |
| | | | | computation, ensure received data is byte aligned when receive is complete by throwing away the start bit during reception. | ||||
* | Speed up bit-banged USART code in the AVRISP project. | Dean Camera | 2009-12-15 | 1 | -1/+1 |
| | | | | Fix project text files to refer to "project" instead of "demo". | ||||
* | Split out NVM access code in the AVRISP project into a seperate NVMTarget.c ↵ | Dean Camera | 2009-12-14 | 1 | -0/+1 |
| | | | | source file and header. Make NVM register accesses use the NVM base address as set by the host, rather than using the fixed value from the XMEGA datasheet. | ||||
* | The AVRISP project can now enter PDI mode under both bit-bang and hardware ↵ | Dean Camera | 2009-12-13 | 1 | -0/+1 |
| | | | | USART connection modes, tested against the XPLAIN board hardware. Still need to complete higher level NVM access code so that the device's memories can be read and written. | ||||
* | Fix PDI code - must send NVM enable key least significant byte first, need ↵ | Dean Camera | 2009-12-11 | 1 | -1/+1 |
| | | | | to make sure Tx and Rx is switched correctly including disabling the output on the Tx line when receiving. | ||||
* | Fix AVRISP PDI protocol - make sure inverted masks have the appropriate ↵ | Dean Camera | 2009-12-11 | 1 | -1/+1 |
| | | | | parenthesis around them, make sure the BREAK command for the hardware USART has 12 clock cycles exactly. Poll NVM Enable bit in the target's STATUS PDI register with a timeout, as it is not set immediately. | ||||
* | Change over AVRISP project to have both hardware USART and software USART ↵ | Dean Camera | 2009-12-11 | 1 | -1/+1 |
| | | | | modes for the PDI protocol, when enabled. Fix up PDI initialisation routines. | ||||
* | Fix inverted bit-banged USART logic in the AVRISP project for PDI ↵ | Dean Camera | 2009-12-09 | 1 | -1/+1 |
| | | | | programming. Add a delay to the clock toggling in the AVRISP project to ensure that the programming speed does not exceed 10MHz under any conditions to satisfy the limits in the datasheet for all target voltages. Fix incorrect pin being used as the DATA in in PDI programming mode. | ||||
* | Fix the tokens which enable and disable the different programming protocols ↵ | Dean Camera | 2009-12-03 | 1 | -2/+2 |
| | | | | in the AVRISP project. | ||||
* | Document the PDI programming routines implemented so far in the AVRISP ↵ | Dean Camera | 2009-12-03 | 1 | -0/+1 |
| | | | | project. Add ability to selectively disable ISP programming support in addition to the existing ability to disable PDI programming support. | ||||
* | Started implementing the low level PDI protocol in the AVRISP project, for ↵ | Dean Camera | 2009-12-03 | 1 | -1/+1 |
| | | | | XMEGA device programming. | ||||
* | Add support for unwrapping of the XMEGA PDI programming protocol to the ↵ | Dean Camera | 2009-12-02 | 1 | -0/+3 |
| | | | | AVRISP Programmer project. | ||||
* | Rename V2ProtocolTarget files to ISPTarget in the AVRISP Programmer Clone ↵ | Dean Camera | 2009-12-02 | 1 | -1/+1 |
| | | | | project. | ||||
* | Factor out all the ISP related code into a seperate ISPProtocol set of files ↵ | Dean Camera | 2009-12-02 | 1 | -0/+1 |
| | | | | in the AVRISP Clone programmer project, to clearly seperate out the programming protocols when PDI programming is implemented. | ||||
* | Fix invalid Event name rule in demo/project makefiles. | Dean Camera | 2009-10-16 | 1 | -1/+1 |
| | |||||
* | Remove USE_NONSTANDARD_DESCRIPTOR_NAMES compile time token, split out ↵ | Dean Camera | 2009-09-09 | 1 | -2/+1 |
| | | | | | | standard descriptors into seperate USB_Descriptor_* and USB_StdDescriptor_* structures so that both can be used within the one project. Add guard to the HID Host Class driver SetProtocol command, to ensure that the device supports boot protocol mode before issuing the request. | ||||
* | Add in new invalid event hook check targets to project makefiles to produce ↵ | Dean Camera | 2009-09-06 | 1 | -31/+48 |
| | | | | | | | | compilation errors when invalid event names are used in a project. Re-add in flip, flip-ee, dfu and dfu-ee targets to project makefiles (thanks to Opendous Inc.) Fix allowable F_CPU values comment in project makefiles. | ||||
* | Replace -finline-limit with -fno-inline-small-functions in project makefiles. | Dean Camera | 2009-08-30 | 1 | -1/+1 |
| | |||||
* | Add VTARGET level detection to the AVRISP project on supported AVR models. | Dean Camera | 2009-08-25 | 1 | -1/+2 |
| | |||||
* | Make AVRISP project build again - fix incorrect preprocessor directive in ↵ | Dean Camera | 2009-08-25 | 1 | -1/+1 |
| | | | | V2Protocol.c, fix makefile LUFA_PATH. | ||||
* | Partial Commit: Move AVRISP project out of the Projects\Incomplete directory. | Dean Camera | 2009-08-25 | 1 | -0/+727 |
| | |||||
* | Move AVRISP Programmer project to a new Unfinished subdirectory of Project ↵ | Dean Camera | 2009-08-18 | 1 | -722/+0 |
| | | | | while it is under development. | ||||
* | Added beginnings of a new AVRISP-MKII clone project. | Dean Camera | 2009-08-17 | 1 | -0/+722 |
Added new Endpoint_SetEndpointDirection() macro to set the current endpoint direction for bidirectional endpoints. Renamed internal USB_INT_ENDPOINT_SETUP macro to USB_INT_RXSTPI to fit in with the rest of the interrupt vector macros. |