From 37cf2607648a40bbac0b37f7e0838f240e66450a Mon Sep 17 00:00:00 2001 From: tmk Date: Mon, 28 Apr 2014 08:55:07 +0900 Subject: [PATCH] Check if LUFA-git really exists(Fix #118) --- protocol/lufa.mk | 2 +- protocol/lufa/descriptor.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/protocol/lufa.mk b/protocol/lufa.mk index 48ce9ae..ac70ac0 100644 --- a/protocol/lufa.mk +++ b/protocol/lufa.mk @@ -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 diff --git a/protocol/lufa/descriptor.h b/protocol/lufa/descriptor.h index e0acec8..a2db4bf 100644 --- a/protocol/lufa/descriptor.h +++ b/protocol/lufa/descriptor.h @@ -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) | \