aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/AVRISP/makefile
Commit message (Collapse)AuthorAgeFilesLines
* Rename AVRISP project folder to AVRISP-MKII.Dean Camera2009-12-271-752/+0
|
* Remove missed timer 0 init code in the ISP protocol handler in the AVRISP ↵Dean Camera2009-12-271-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 Camera2009-12-261-1/+1
|
* Complete combining of PDI and TPI target communication code files, stub out ↵Dean Camera2009-12-241-2/+1
| | | | TINY NVM controller functions.
* Remove serial driver use from the AVRISP project now that it is no longer ↵Dean Camera2009-12-241-1/+0
| | | | needed.
* Combine PDIProtocol and TPIProtocol into a single XPROGProtocol set of files.Dean Camera2009-12-241-2/+1
|
* Rename PDIProtocol.c/.h to XPROGProtocol.c/.h as it will now handle both TPI ↵Dean Camera2009-12-241-2/+1
| | | | and PDI programming.
* Combine AVRISP project TPI and PDI lib directories - these protocols use the ↵Dean Camera2009-12-241-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 Camera2009-12-231-8/+8
| | | | protocol handlers are in seperate directories.
* Stub out more of the TPI programming protocol routines in the AVRISP project.Dean Camera2009-12-231-0/+1
|
* Seperate out XMEGA and TINY NVM routines into seperate files.Dean Camera2009-12-231-0/+1
|
* Start of implementation of the low level TPI programming protocol in the ↵Dean Camera2009-12-231-1/+3
| | | | AVRISP project.
* Fixed AVRISP project timeouts not checking for the correct timeout period ↵Dean Camera2009-12-201-1/+1
| | | | (thanks to Carl Ott).
* Un-inline the SendAddress function in NVMTarget.c/.h of the AVRISP project.Dean Camera2009-12-171-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 Camera2009-12-161-1/+1
|
* Slightly speed up software USART in the AVRISP project - faster parity ↵Dean Camera2009-12-161-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 Camera2009-12-151-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 Camera2009-12-141-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 Camera2009-12-131-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 Camera2009-12-111-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 Camera2009-12-111-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 Camera2009-12-111-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 Camera2009-12-091-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 Camera2009-12-031-2/+2
| | | | in the AVRISP project.
* Document the PDI programming routines implemented so far in the AVRISP ↵Dean Camera2009-12-031-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 Camera2009-12-031-1/+1
| | | | XMEGA device programming.
* Add support for unwrapping of the XMEGA PDI programming protocol to the ↵Dean Camera2009-12-021-0/+3
| | | | AVRISP Programmer project.
* Rename V2ProtocolTarget files to ISPTarget in the AVRISP Programmer Clone ↵Dean Camera2009-12-021-1/+1
| | | | project.
* Factor out all the ISP related code into a seperate ISPProtocol set of files ↵Dean Camera2009-12-021-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 Camera2009-10-161-1/+1
|
* Remove USE_NONSTANDARD_DESCRIPTOR_NAMES compile time token, split out ↵Dean Camera2009-09-091-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 Camera2009-09-061-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 Camera2009-08-301-1/+1
|
* Add VTARGET level detection to the AVRISP project on supported AVR models.Dean Camera2009-08-251-1/+2
|
* Make AVRISP project build again - fix incorrect preprocessor directive in ↵Dean Camera2009-08-251-1/+1
| | | | V2Protocol.c, fix makefile LUFA_PATH.
* Partial Commit: Move AVRISP project out of the Projects\Incomplete directory.Dean Camera2009-08-251-0/+727
|
* Move AVRISP Programmer project to a new Unfinished subdirectory of Project ↵Dean Camera2009-08-181-722/+0
| | | | while it is under development.
* Added beginnings of a new AVRISP-MKII clone project.Dean Camera2009-08-171-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.