Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lufa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Erik Strand
lufa
Commits
fa664f8b
Commit
fa664f8b
authored
Aug 12, 2012
by
Dean Camera
Browse files
Options
Downloads
Patches
Plain Diff
Fixed broken RESET_TOGGLES_LIBUSB_COMPAT compile time option in the AVRISP-MKII project.
parent
9c590e41
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
LUFA/DoxygenPages/ChangeLog.txt
+17
-1
17 additions, 1 deletion
LUFA/DoxygenPages/ChangeLog.txt
Projects/AVRISP-MKII/AVRISPDescriptors.h
+5
-5
5 additions, 5 deletions
Projects/AVRISP-MKII/AVRISPDescriptors.h
with
22 additions
and
6 deletions
LUFA/DoxygenPages/ChangeLog.txt
+
17
−
1
View file @
fa664f8b
...
...
@@ -7,7 +7,23 @@
/** \page Page_ChangeLog Project Changelog
*
* \section Sec_ChangeLogXXXXXX Version XXXXXX
* - No Changes.
* <b>New:</b>
* - Core:
* - <i>None</i>
* - Library Applications:
* - <i>None</i>
*
* <b>Changed:</b>
* - Core:
* - <i>None</i>
* - Library Applications:
* - <i>None</i>
*
* <b>Fixed:</b>
* - Core:
* - <i>None</i>
* - Library Applications:
* - Fixed broken RESET_TOGGLES_LIBUSB_COMPAT compile time option in the AVRISP-MKII project
*
* \section Sec_ChangeLog120730 Version 120730
* <b>New:</b>
...
...
This diff is collapsed.
Click to expand it.
Projects/AVRISP-MKII/AVRISPDescriptors.h
+
5
−
5
View file @
fa664f8b
...
...
@@ -59,13 +59,13 @@
/** Endpoint address of the AVRISP data IN endpoint, when in LibUSB driver compatibility mode. */
#define AVRISP_DATA_IN_EPADDR_LIBUSB (ENDPOINT_DIR_IN | 3)
#if !defined(LIBUSB_DRIVER_COMPAT) || defined(__DOXYGEN__)
/** Endpoint address of the AVRISP data IN endpoint. */
#define AVRISP_DATA_IN_EPADDR AVRISP_DATA_IN_EPADDR_JUNGO
#elif defined(RESET_TOGGLES_LIBUSB_COMPAT)
#if defined(RESET_TOGGLES_LIBUSB_COMPAT)
#define AVRISP_DATA_IN_EPADDR AVRISP_CurrDataINEndpointAddress
#el
se
#el
if defined(LIBUSB_DRIVER_COMPAT)
#define AVRISP_DATA_IN_EPADDR AVRISP_DATA_IN_EPADDR_LIBUSB
#else
/** Endpoint address of the AVRISP data IN endpoint. */
#define AVRISP_DATA_IN_EPADDR AVRISP_DATA_IN_EPADDR_JUNGO
#endif
/** Size in bytes of the AVRISP data endpoint. */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment