]> git.donarmstrong.com Git - tmk_firmware.git/commitdiff
Add vusb support to iwrap
authortmk <nobody@nowhere>
Mon, 22 Apr 2013 04:03:24 +0000 (13:03 +0900)
committertmk <nobody@nowhere>
Mon, 22 Apr 2013 04:03:24 +0000 (13:03 +0900)
protocol/iwrap.mk

index e1d0efe69d06b1646c24e1844dea8cf3c869264c..3b63efe9ad6b138c274a27f39c18b5325050c971 100644 (file)
@@ -8,17 +8,19 @@ SRC +=        $(IWRAP_DIR)/main.c \
        $(COMMON_DIR)/sendchar_uart.c \
        $(COMMON_DIR)/uart.c
 
+# Search Path
+VPATH += $(TOP_DIR)/protocol/iwrap
+
+
 # TODO: compatible with LUFA and PJRC
 # V-USB
 #
-#VUSB_DIR = protocol/vusb
-#OPT_DEFS += -DPROTOCOL_VUSB
-#SRC +=        $(VUSB_DIR)/vusb.c \
-#      $(VUSB_DIR)/usbdrv/usbdrv.c \
-#      $(VUSB_DIR)/usbdrv/usbdrvasm.S \
-#      $(VUSB_DIR)/usbdrv/oddebug.c
-#VPATH += $(TOP_DIR)/protocol/vusb:$(TOP_DIR)/protocol/vusb/usbdrv
+VUSB_DIR = protocol/vusb
+OPT_DEFS += -DPROTOCOL_VUSB
+SRC += $(VUSB_DIR)/vusb.c \
+       $(VUSB_DIR)/usbdrv/usbdrv.c \
+       $(VUSB_DIR)/usbdrv/usbdrvasm.S \
+       $(VUSB_DIR)/usbdrv/oddebug.c
+VPATH += $(TOP_DIR)/protocol/vusb:$(TOP_DIR)/protocol/vusb/usbdrv
 
 
-# Search Path
-VPATH += $(TOP_DIR)/protocol/iwrap