aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/AVRISP/Lib
Commit message (Collapse)AuthorAgeFilesLines
...
* Add support for unwrapping of the XMEGA PDI programming protocol to the ↵Dean Camera2009-12-026-43/+372
| | | | AVRISP Programmer project.
* Rename V2ProtocolTarget files to ISPTarget in the AVRISP Programmer Clone ↵Dean Camera2009-12-023-2/+2
| | | | project.
* Factor out all the ISP related code into a seperate ISPProtocol set of files ↵Dean Camera2009-12-029-485/+635
| | | | 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-022-51/+52
| | | | of XMEGA PDI programming support.
* Spell check all source code variables, comments and strings.Dean Camera2009-11-094-44/+44
|
* Minor changes to the AVRISP project for code clarity.Dean Camera2009-11-093-11/+8
|
* Doxygen fixes to \param directives to give data direction in all projects. ↵Dean Camera2009-09-244-18/+18
| | | | Make HID item filtering routines clearer in the HID WithParser demos.
* Move ADC VTARGET sampling to a new V2Params_UpdateParamValues() in the ↵Dean Camera2009-08-302-3/+21
| | | | AVRISP project so that there is a central place where all non-PC set target values can be updated easily.
* Increase AVRISP command timeout to 240ms up from 150ms to prevent some ISP ↵Dean Camera2009-08-283-3/+16
| | | | | | 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-272-2/+3
| | | | | | 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.
* Condensed SCSI command functions in the LowLevel Mass Storage Host demo, to ↵Dean Camera2009-08-271-1/+1
| | | | | | save on FLASH space. Fixed issue in AVRISP project where the target RESET line was being toggled before it was tristated, causing problems synchronising to some targets (thanks to Mike Alex).
* 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-257-0/+1283
|
* Move AVRISP Programmer project to a new Unfinished subdirectory of Project ↵Dean Camera2009-08-183-315/+0
| | | | while it is under development.
* Enhancements to the AVRISP Programmer project to attempt to get AVRStudio to ↵Dean Camera2009-08-183-55/+217
| | | | communicate with the device.
* Added beginnings of a new AVRISP-MKII clone project.Dean Camera2009-08-172-0/+153
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.