diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-09-20 12:01:25 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-09-20 12:01:25 +0000 |
commit | 51566d1a811f43dc39f38cb597de44ba9363d974 (patch) | |
tree | 9dc1b20907accffd98fecec2f0e034331fa41b2d /Demos/Device/ClassDriver/GenericHID | |
parent | cd0adb7574525978f50eabd536f7563f2d9f9aa7 (diff) | |
download | lufa-51566d1a811f43dc39f38cb597de44ba9363d974.tar.gz lufa-51566d1a811f43dc39f38cb597de44ba9363d974.tar.bz2 lufa-51566d1a811f43dc39f38cb597de44ba9363d974.zip |
Added new Pipe_IsFrozen() macro to determine if the currently selected pipe is frozen.
Added new USB_GetHIDReportSize() function to the HID report parser to retrieve the size of a given report by its ID.
More additions to the unfinished HID Host Class Driver.
Diffstat (limited to 'Demos/Device/ClassDriver/GenericHID')
-rw-r--r-- | Demos/Device/ClassDriver/GenericHID/Descriptors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Device/ClassDriver/GenericHID/Descriptors.c b/Demos/Device/ClassDriver/GenericHID/Descriptors.c index a2bea6dd7..e937973fa 100644 --- a/Demos/Device/ClassDriver/GenericHID/Descriptors.c +++ b/Demos/Device/ClassDriver/GenericHID/Descriptors.c @@ -123,7 +123,7 @@ USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor = .Class = 0x03,
.SubClass = 0x00,
- .Protocol = 0x00,
+ .Protocol = HID_NON_BOOT_PROTOCOL,
.InterfaceStrIndex = NO_DESCRIPTOR
},
|