浏览代码

Check if LUFA-git really exists(Fix #118)

tmk 11 年之前
父节点
当前提交
37cf260764
共有 2 个文件被更改,包括 2 次插入1 次删除
  1. 1 1
      protocol/lufa.mk
  2. 1 0
      protocol/lufa/descriptor.h

+ 1 - 1
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

+ 1 - 0
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) | \