aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/AVRISP/Lib/V2Protocol.c
Commit message (Collapse)AuthorAgeFilesLines
* Rename AVRISP project folder to AVRISP-MKII.Dean Camera2009-12-271-233/+0
|
* Added const where possible to the source functions in the Projects directory.Dean Camera2009-12-261-1/+13
| | | | | | Added command timeout to the AVRISP project so that incorrectly connected targets no longer freeze the device. Removed string descriptors from the TeensyHID bootloader to reduce its size.
* Remove serial driver use from the AVRISP project now that it is no longer ↵Dean Camera2009-12-241-2/+0
| | | | needed.
* Combine PDIProtocol and TPIProtocol into a single XPROGProtocol set of files.Dean Camera2009-12-241-6/+3
|
* Combine AVRISP project TPI and PDI lib directories - these protocols use the ↵Dean Camera2009-12-241-1/+3
| | | | same underlying XPROG wrapper for the host-to-programmer command wrapping.
* Stub out more of the TPI programming protocol routines in the AVRISP project.Dean Camera2009-12-231-0/+3
|
* Add const qualifier to the parameters of Projects' functions where possible.Dean Camera2009-12-201-2/+2
|
* 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-8/+10
| | | | project. Add ability to selectively disable ISP programming support in addition to the existing ability to disable PDI programming support.
* Add support for unwrapping of the XMEGA PDI programming protocol to the ↵Dean Camera2009-12-021-1/+5
| | | | AVRISP Programmer project.
* Factor out all the ISP related code into a seperate ISPProtocol set of files ↵Dean Camera2009-12-021-425/+20
| | | | in the AVRISP Clone programmer project, to clearly seperate out the programming protocols when PDI programming is implemented.
* Rename the V2Protocol command handlers in the AVRISP project in preperation ↵Dean Camera2009-12-021-38/+39
| | | | of XMEGA PDI programming support.
* Spell check all source code variables, comments and strings.Dean Camera2009-11-091-8/+8
|
* Minor changes to the AVRISP project for code clarity.Dean Camera2009-11-091-4/+4
|
* Doxygen fixes to \param directives to give data direction in all projects. ↵Dean Camera2009-09-241-6/+6
| | | | Make HID item filtering routines clearer in the HID WithParser demos.
* Increase AVRISP command timeout to 240ms up from 150ms to prevent some ISP ↵Dean Camera2009-08-281-1/+12
| | | | | | commands from timing out too early. Add check to the PROGRAM FLASH ISP and PROGRAM EEPROM ISP handler to return an explicit error when the host attempts to write more data than the device is able to buffer.
* Make WaitWhileBusy function in the AVRISP project more explicit about how it ↵Dean Camera2009-08-271-1/+1
| | | | | | sends and receives the busy check command. Reduce size of PROGRAM FLASH ISP or PROGRAM EEPROM ISP buffer to 256 bytes to prevent blowing the stack on the smallest USB AVR models.
* Partial Commit: Move AVRISP project out of the Projects\Incomplete directory.Dean Camera2009-08-251-0/+608
|
* Move AVRISP Programmer project to a new Unfinished subdirectory of Project ↵Dean Camera2009-08-181-161/+0
| | | | while it is under development.
* Enhancements to the AVRISP Programmer project to attempt to get AVRStudio to ↵Dean Camera2009-08-181-9/+112
| | | | communicate with the device.
* Added beginnings of a new AVRISP-MKII clone project.Dean Camera2009-08-171-0/+58
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.