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
b3a4d851
Commit
b3a4d851
authored
16 years ago
by
Dean Camera
Browse files
Options
Downloads
Patches
Plain Diff
Fixed incorrect PID value being used in the USBtoSerial project (thanks to Phill).
parent
59becad8
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Demos/Device/USBtoSerial/Descriptors.c
+1
-1
1 addition, 1 deletion
Demos/Device/USBtoSerial/Descriptors.c
LUFA/ChangeLog.txt
+1
-0
1 addition, 0 deletions
LUFA/ChangeLog.txt
LUFA/Drivers/USB/HighLevel/USBTask.h
+4
-3
4 additions, 3 deletions
LUFA/Drivers/USB/HighLevel/USBTask.h
with
6 additions
and
4 deletions
Demos/Device/USBtoSerial/Descriptors.c
+
1
−
1
View file @
b3a4d851
...
...
@@ -54,7 +54,7 @@ USB_Descriptor_Device_t PROGMEM DeviceDescriptor =
.
Endpoint0Size
=
FIXED_CONTROL_ENDPOINT_SIZE
,
.
VendorID
=
0x03EB
,
.
ProductID
=
0x204
4
,
.
ProductID
=
0x204
B
,
.
ReleaseNumber
=
0x0000
,
.
ManufacturerStrIndex
=
0x01
,
...
...
This diff is collapsed.
Click to expand it.
LUFA/ChangeLog.txt
+
1
−
0
View file @
b3a4d851
...
...
@@ -25,6 +25,7 @@
* - Removed STREAM_CALLBACK() macro - callbacks now use regular function definitions to clarify user code
* - Removed DESCRIPTOR_COMPARATOR() macro - comparators should now use regular function definitions to clarify user code
* - USB_IsConnected is now cleared before the USB_Disconnect() event is fired in response to VBUS being removed
* - Fixed incorrect PID value being used in the USBtoSerial project (thanks to Phill)
*
*
* \section Sec_ChangeLog090510 Version 090510
...
...
This diff is collapsed.
Click to expand it.
LUFA/Drivers/USB/HighLevel/USBTask.h
+
4
−
3
View file @
b3a4d851
...
...
@@ -128,14 +128,15 @@
* in device mode) in order to manage USB communications. This task may be executed inside an RTOS,
* scheduler (e.g. the simple LUFA Scheduler), fast timer ISR or the main user application loop.
*
* The USB task must be serviced within
5
0m
S in all
mode
s
,
when needed. The task may be serviced
* at all times, or (for minimum CPU consumption):
* The USB task must be serviced within
3
0m
s while in device
mode,
or within 1ms while in host mode.
*
The task may be serviced
at all times, or (for minimum CPU consumption):
*
* - In device mode, it may be disabled at start-up, enabled on the firing of the \ref EVENT_USB_Connect() event
* and disabled again on the firing of the \ref EVENT_USB_Disconnect() event.
*
* - In host mode, it may be disabled at start-up, enabled on the firing of the \ref EVENT_USB_DeviceAttached()
* event and disabled again on the firing of the \ref EVENT_USB_DeviceUnattached() event.
* event and disabled again on the firing of the \ref EVENT_USB_DeviceEnumerationComplete() or
* \ref EVENT_USB_DeviceEnumerationFailed() events.
*
* If in device mode (only), the control endpoint can instead be managed via interrupts entirely by the library
* by defining the INTERRUPT_CONTROL_ENDPOINT token and passing it to the compiler via the -D switch.
...
...
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