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
f0c72df6
Commit
f0c72df6
authored
Jun 27, 2013
by
Dean Camera
Browse files
Options
Downloads
Patches
Plain Diff
Re-added Set Control Line State request handling to the CDC class bootloader.
parent
8bcc38aa
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
Bootloaders/CDC/BootloaderCDC.c
+8
-0
8 additions, 0 deletions
Bootloaders/CDC/BootloaderCDC.c
Bootloaders/CDC/Descriptors.c
+1
-1
1 addition, 1 deletion
Bootloaders/CDC/Descriptors.c
LUFA/DoxygenPages/ChangeLog.txt
+3
-0
3 additions, 0 deletions
LUFA/DoxygenPages/ChangeLog.txt
with
12 additions
and
1 deletion
Bootloaders/CDC/BootloaderCDC.c
+
8
−
0
View file @
f0c72df6
...
...
@@ -222,6 +222,14 @@ void EVENT_USB_Device_ControlRequest(void)
Endpoint_ClearIN
();
}
break
;
case
CDC_REQ_SetControlLineState
:
if
(
USB_ControlRequest
.
bmRequestType
==
(
REQDIR_HOSTTODEVICE
|
REQTYPE_CLASS
|
REQREC_INTERFACE
))
{
Endpoint_ClearSETUP
();
Endpoint_ClearStatusStage
();
}
break
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Bootloaders/CDC/Descriptors.c
+
1
−
1
View file @
f0c72df6
...
...
@@ -115,7 +115,7 @@ const USB_Descriptor_Configuration_t ConfigurationDescriptor =
.
Header
=
{.
Size
=
sizeof
(
USB_CDC_Descriptor_FunctionalACM_t
),
.
Type
=
DTYPE_CSInterface
},
.
Subtype
=
0x02
,
.
Capabilities
=
0x0
0
,
.
Capabilities
=
0x0
2
,
},
.
CDC_Functional_Union
=
...
...
This diff is collapsed.
Click to expand it.
LUFA/DoxygenPages/ChangeLog.txt
+
3
−
0
View file @
f0c72df6
...
...
@@ -26,6 +26,9 @@
* - All board drivers now implement dummy functions and constants when BOARD is set to NONE
* - Added missing LEDs to the XMEGA A3BU Xplained board LED driver (thanks to Michael Janssen)
* - Changed board Dataflash drivers to automatically configure the appropriate SPI interface for the selected board
* - Library Applications:
* - Re-added Set Control Line State request handling to the CDC class bootloader to prevent issues with the .NET serial
* class (thanks to Erik Lins)
*
* <b>Fixed:</b>
* - Core:
...
...
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