Check if LUFA-git really exists(Fix #118)
This commit is contained in:
parent
ca8de4f93d
commit
efc983a07d
@ -1,7 +1,7 @@
|
|||||||
LUFA_DIR = protocol/lufa
|
LUFA_DIR = protocol/lufa
|
||||||
|
|
||||||
# Path to the LUFA library
|
# Path to the LUFA library
|
||||||
ifeq (, $(wildcard $(TOP_DIR)/$(LUFA_DIR)/LUFA-git))
|
ifeq (, $(wildcard $(TOP_DIR)/$(LUFA_DIR)/LUFA-git/LUFA/Version.h))
|
||||||
LUFA_PATH ?= $(LUFA_DIR)/LUFA-120730
|
LUFA_PATH ?= $(LUFA_DIR)/LUFA-120730
|
||||||
else
|
else
|
||||||
LUFA_PATH ?= $(LUFA_DIR)/LUFA-git
|
LUFA_PATH ?= $(LUFA_DIR)/LUFA-git
|
||||||
|
@ -162,6 +162,7 @@ uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue,
|
|||||||
|
|
||||||
/* new API */
|
/* new API */
|
||||||
#if LUFA_VERSION_INTEGER < 0x140302
|
#if LUFA_VERSION_INTEGER < 0x140302
|
||||||
|
#undef VERSION_BCD
|
||||||
#define VERSION_BCD(Major, Minor, Revision) \
|
#define VERSION_BCD(Major, Minor, Revision) \
|
||||||
CPU_TO_LE16( ((Major & 0xFF) << 8) | \
|
CPU_TO_LE16( ((Major & 0xFF) << 8) | \
|
||||||
((Minor & 0x0F) << 4) | \
|
((Minor & 0x0F) << 4) | \
|
||||||
|
Reference in New Issue
Block a user