Skip to content

Commit

Permalink
Check if LUFA-git really exists(Fix #118)
Browse files Browse the repository at this point in the history
  • Loading branch information
yashikno committed Apr 27, 2014
1 parent 22854eb commit 37cf260
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion protocol/lufa.mk
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
LUFA_DIR = protocol/lufa

# 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
else
LUFA_PATH ?= $(LUFA_DIR)/LUFA-git
Expand Down
1 change: 1 addition & 0 deletions protocol/lufa/descriptor.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue,

/* new API */
#if LUFA_VERSION_INTEGER < 0x140302
#undef VERSION_BCD
#define VERSION_BCD(Major, Minor, Revision) \
CPU_TO_LE16( ((Major & 0xFF) << 8) | \
((Minor & 0x0F) << 4) | \
Expand Down

0 comments on commit 37cf260

Please sign in to comment.