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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Erik Strand
lufa
Commits
3aa8a692
Commit
3aa8a692
authored
13 years ago
by
Dean Camera
Browse files
Options
Downloads
Patches
Plain Diff
Fixed AVRISP-MKII Clone compile warning on AVR8 U4 targets even when NO_VTARGET_DETECT is enabled.
parent
738c9203
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
LUFA/ManPages/ChangeLog.txt
+1
-0
1 addition, 0 deletions
LUFA/ManPages/ChangeLog.txt
Projects/AVRISP-MKII/Lib/V2Protocol.h
+1
-1
1 addition, 1 deletion
Projects/AVRISP-MKII/Lib/V2Protocol.h
with
2 additions
and
1 deletion
LUFA/ManPages/ChangeLog.txt
+
1
−
0
View file @
3aa8a692
...
@@ -25,6 +25,7 @@
...
@@ -25,6 +25,7 @@
* - Fixed ring buffer size limited to 255 elements, instead of the intended 65535 elements.
* - Fixed ring buffer size limited to 255 elements, instead of the intended 65535 elements.
* - Library Applications:
* - Library Applications:
* - Added reliability patches to the AVRISP-MKII Clone project's PDI/TPI protocols (thanks to Justin Mattair)
* - Added reliability patches to the AVRISP-MKII Clone project's PDI/TPI protocols (thanks to Justin Mattair)
* - Fixed AVRISP-MKII Clone compile warning on AVR8 U4 targets even when NO_VTARGET_DETECT is enabled
*
*
* \section Sec_ChangeLog111009 Version 111009
* \section Sec_ChangeLog111009 Version 111009
* <b>New:</b>
* <b>New:</b>
...
...
This diff is collapsed.
Click to expand it.
Projects/AVRISP-MKII/Lib/V2Protocol.h
+
1
−
1
View file @
3aa8a692
...
@@ -58,7 +58,7 @@
...
@@ -58,7 +58,7 @@
#endif
#endif
#endif
#endif
#if defined(USB_SERIES_4_AVR) && ((VTARGET_ADC_CHANNEL == 2) || (VTARGET_ADC_CHANNEL == 3))
#if defined(USB_SERIES_4_AVR) && ((VTARGET_ADC_CHANNEL == 2) || (VTARGET_ADC_CHANNEL == 3))
&& !defined(NO_VTARGET_DETECT)
#error The U4 AVR chips do not contain ADC channels 2 or 3. Please change VTARGET_ADC_CHANNEL or define NO_VTARGET_DETECT in the makefile.
#error The U4 AVR chips do not contain ADC channels 2 or 3. Please change VTARGET_ADC_CHANNEL or define NO_VTARGET_DETECT in the makefile.
#endif
#endif
...
...
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