projects
/
pub
/
lufa.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add support for Mouse Scrollwheel to the MouseHostWithParser demos.
[pub/lufa.git]
/
LUFA
/
Drivers
/
USB
/
Class
/
Host
/
CDC.c
diff --git
a/LUFA/Drivers/USB/Class/Host/CDC.c
b/LUFA/Drivers/USB/Class/Host/CDC.c
index
adb9320
..
88d4156
100644
(file)
--- a/
LUFA/Drivers/USB/Class/Host/CDC.c
+++ b/
LUFA/Drivers/USB/Class/Host/CDC.c
@@
-132,7
+132,7
@@
uint8_t CDC_Host_ConfigurePipes(USB_ClassInfo_CDC_Host_t* const CDCInterfaceInfo
return CDC_ENUMERROR_NoError;
\r
}
\r
\r
return CDC_ENUMERROR_NoError;
\r
}
\r
\r
-static uint8_t DComp_CDC_Host_NextCDCControlInterface(void* CurrentDescriptor)
\r
+static uint8_t DComp_CDC_Host_NextCDCControlInterface(void*
const
CurrentDescriptor)
\r
{
\r
if (DESCRIPTOR_TYPE(CurrentDescriptor) == DTYPE_Interface)
\r
{
\r
{
\r
if (DESCRIPTOR_TYPE(CurrentDescriptor) == DTYPE_Interface)
\r
{
\r
@@
-150,7
+150,7
@@
static uint8_t DComp_CDC_Host_NextCDCControlInterface(void* CurrentDescriptor)
return DESCRIPTOR_SEARCH_NotFound;
\r
}
\r
\r
return DESCRIPTOR_SEARCH_NotFound;
\r
}
\r
\r
-static uint8_t DComp_CDC_Host_NextCDCDataInterface(void* CurrentDescriptor)
\r
+static uint8_t DComp_CDC_Host_NextCDCDataInterface(void*
const
CurrentDescriptor)
\r
{
\r
if (DESCRIPTOR_TYPE(CurrentDescriptor) == DTYPE_Interface)
\r
{
\r
{
\r
if (DESCRIPTOR_TYPE(CurrentDescriptor) == DTYPE_Interface)
\r
{
\r
@@
-168,7
+168,7
@@
static uint8_t DComp_CDC_Host_NextCDCDataInterface(void* CurrentDescriptor)
return DESCRIPTOR_SEARCH_NotFound;
\r
}
\r
\r
return DESCRIPTOR_SEARCH_NotFound;
\r
}
\r
\r
-static uint8_t DComp_CDC_Host_NextCDCInterfaceEndpoint(void* CurrentDescriptor)
\r
+static uint8_t DComp_CDC_Host_NextCDCInterfaceEndpoint(void*
const
CurrentDescriptor)
\r
{
\r
if (DESCRIPTOR_TYPE(CurrentDescriptor) == DTYPE_Endpoint)
\r
{
\r
{
\r
if (DESCRIPTOR_TYPE(CurrentDescriptor) == DTYPE_Endpoint)
\r
{
\r