projects
/
pub
/
lufa.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Rewritten event system to remove all macros, to make user code clearer.
[pub/lufa.git]
/
Demos
/
Host
/
MouseHostWithParser
/
ConfigDescriptor.h
diff --git
a/Demos/Host/MouseHostWithParser/ConfigDescriptor.h
b/Demos/Host/MouseHostWithParser/ConfigDescriptor.h
index
7cb12db
..
08400c5
100644
(file)
--- a/
Demos/Host/MouseHostWithParser/ConfigDescriptor.h
+++ b/
Demos/Host/MouseHostWithParser/ConfigDescriptor.h
@@
-69,13
+69,12
@@
NoHIDDescriptorFound = 5, /**< A compatible HID descriptor was not found in the device's HID interface */
\r
NoEndpointFound = 5, /**< A compatible HID IN endpoint was not found in the device's HID interface */
\r
};
\r
NoHIDDescriptorFound = 5, /**< A compatible HID descriptor was not found in the device's HID interface */
\r
NoEndpointFound = 5, /**< A compatible HID IN endpoint was not found in the device's HID interface */
\r
};
\r
-
\r
- /* Configuration Descriptor Comparison Functions: */
\r
- DESCRIPTOR_COMPARATOR(NextMouseInterface);
\r
- DESCRIPTOR_COMPARATOR(NextInterfaceMouseDataEndpoint);
\r
- DESCRIPTOR_COMPARATOR(NextHID);
\r
\r
/* Function Prototypes: */
\r
\r
/* Function Prototypes: */
\r
- uint8_t ProcessConfigurationDescriptor(void);
\r
+ uint8_t ProcessConfigurationDescriptor(void);
\r
+
\r
+ uint8_t DComp_NextMouseInterface(void* CurrentDescriptor);
\r
+ uint8_t DComp_NextInterfaceMouseDataEndpoint(void* CurrentDescriptor);
\r
+ uint8_t DComp_NextHID(void* CurrentDescriptor);
\r
\r
#endif
\r
\r
#endif
\r