summaryrefslogtreecommitdiff
path: root/protocol/lufa/descriptor.h
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2014-04-25 12:52:47 +0900
committertmk <nobody@nowhere>2014-04-25 13:39:35 +0900
commitfc3a20c534c370944b7471adc60b8982d586d69c (patch)
treee2c5e1bab9571c366ed74b2e524ada3fb076a8c0 /protocol/lufa/descriptor.h
parentad4cba172b2eea37697ca531016c4c3b4defaeb7 (diff)
Add LUFA git repository(release 140302)
Diffstat (limited to 'protocol/lufa/descriptor.h')
-rw-r--r--protocol/lufa/descriptor.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/protocol/lufa/descriptor.h b/protocol/lufa/descriptor.h
index 9ee1c04d79..e0acec8050 100644
--- a/protocol/lufa/descriptor.h
+++ b/protocol/lufa/descriptor.h
@@ -159,4 +159,13 @@ uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue,
const void** const DescriptorAddress)
ATTR_WARN_UNUSED_RESULT ATTR_NON_NULL_PTR_ARG(3);
+
+/* new API */
+#if LUFA_VERSION_INTEGER < 0x140302
+ #define VERSION_BCD(Major, Minor, Revision) \
+ CPU_TO_LE16( ((Major & 0xFF) << 8) | \
+ ((Minor & 0x0F) << 4) | \
+ (Revision & 0x0F) )
+#endif
+
#endif