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
cfa399a5
Commit
cfa399a5
authored
13 years ago
by
Dean Camera
Browse files
Options
Downloads
Patches
Plain Diff
Remove an unused variable in the HID loader CLI application. Update known issues list.
parent
c48da946
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
Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c
+0
-4
0 additions, 4 deletions
Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c
LUFA/DoxygenPages/KnownIssues.txt
+2
-0
2 additions, 0 deletions
LUFA/DoxygenPages/KnownIssues.txt
with
2 additions
and
4 deletions
Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c
+
0
−
4
View file @
cfa399a5
...
@@ -970,13 +970,9 @@ void parse_options(int argc, char **argv)
...
@@ -970,13 +970,9 @@ void parse_options(int argc, char **argv)
}
else
if
(
strncmp
(
arg
,
"-mmcu="
,
6
)
==
0
)
{
}
else
if
(
strncmp
(
arg
,
"-mmcu="
,
6
)
==
0
)
{
arg
+=
6
;
arg
+=
6
;
uint8_t
valid_prefix
=
0
;
if
(
strncmp
(
arg
,
"at90usb"
,
7
)
==
0
)
{
if
(
strncmp
(
arg
,
"at90usb"
,
7
)
==
0
)
{
valid_prefix
=
1
;
arg
+=
7
;
arg
+=
7
;
}
else
if
(
strncmp
(
arg
,
"atmega"
,
6
)
==
0
)
{
}
else
if
(
strncmp
(
arg
,
"atmega"
,
6
)
==
0
)
{
valid_prefix
=
1
;
arg
+=
6
;
arg
+=
6
;
}
else
{
}
else
{
die
(
"Unknown MCU type
\n
"
);
die
(
"Unknown MCU type
\n
"
);
...
...
This diff is collapsed.
Click to expand it.
LUFA/DoxygenPages/KnownIssues.txt
+
2
−
0
View file @
cfa399a5
...
@@ -27,6 +27,8 @@
...
@@ -27,6 +27,8 @@
* - DMA transfers to and from the USB controller are not yet implemented for this release.
* - DMA transfers to and from the USB controller are not yet implemented for this release.
* - The UC3C, UC3D and UC3L sub-families of UC3 are not currently supported by the library due to their
* - The UC3C, UC3D and UC3L sub-families of UC3 are not currently supported by the library due to their
* altered USB controller design.
* altered USB controller design.
* - The various \c CreateStream() functions for creating standard \c <stdio.h> compatible virtual file
* streams are not available on the UC3 architecture, due to a lack of suitable library support.
* - Architecture Independant
* - Architecture Independant
* - The HID parser fails for array type elements that have a MIN and MAX usage applied; each element
* - The HID parser fails for array type elements that have a MIN and MAX usage applied; each element
* in the array will receive a unique incrementing usage from the MIN value, up to MAX.
* in the array will receive a unique incrementing usage from the MIN value, up to MAX.
...
...
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