usb_desc_dump: build form arduino ino file
This commit is contained in:
parent
cf8712fda7
commit
44ee4f3fcd
6 changed files with 1358 additions and 1516 deletions
|
|
@ -1,7 +1,8 @@
|
|||
TARGET ?= usb_desc_dump
|
||||
TMK_DIR ?= ../../tmk_core
|
||||
TARGET_DIR ?= .
|
||||
SRC ?= desc_dump.cpp
|
||||
|
||||
SRC ?= ino.cpp
|
||||
CONFIG_H ?= config.h
|
||||
|
||||
# MCU name
|
||||
|
|
@ -24,15 +25,13 @@ EXTRAKEY_ENABLE ?= no # Media control and System control
|
|||
CONSOLE_ENABLE ?= yes # Console for debug
|
||||
COMMAND_ENABLE ?= no # Commands for debug and configuration
|
||||
NKRO_ENABLE ?= no # USB Nkey Rollover
|
||||
NO_KEYBOARD ?= yes # No keyboard interface
|
||||
|
||||
# Boot Section Size in bytes
|
||||
OPT_DEFS += -DBOOTLOADER_SIZE=4096
|
||||
OPT_DEFS += -DNO_ACTION_TAPPING
|
||||
OPT_DEFS += -DNO_ACTION_LAYER
|
||||
OPT_DEFS += -DNO_ACTION_MACRO
|
||||
OPT_DEFS += -DNO_DEBUG
|
||||
|
||||
#LDFLAGS += -Wl,--relax
|
||||
EXTRACPPFLAGS = -fpermissive
|
||||
|
||||
# program Leonardo
|
||||
PROGRAM_CMD = avrdude -p$(MCU) -cavr109 -b57600 -Uflash:w:$(TARGET).hex -P$(DEV)
|
||||
|
|
@ -41,7 +40,49 @@ PROGRAM_CMD = avrdude -p$(MCU) -cavr109 -b57600 -Uflash:w:$(TARGET).hex -P$(DEV)
|
|||
VPATH += $(TARGET_DIR)
|
||||
VPATH += $(TMK_DIR)
|
||||
|
||||
|
||||
|
||||
#
|
||||
# USB_desc_dump build setting
|
||||
#
|
||||
include $(TMK_DIR)/protocol/usb_hid.mk
|
||||
|
||||
USB_DESC_DUMP_DIR = $(USB_HOST_SHIELD_DIR)/examples/USB_desc_dump
|
||||
SRC += $(USB_DESC_DUMP_DIR)/USB_desc_dump.cpp
|
||||
SRC += $(USB_HOST_SHIELD_DIR)/hidescriptorparser.cpp
|
||||
|
||||
# Print Standard descriptor
|
||||
OPT_DEFS += -DPRINT_DESC
|
||||
#OPT_DEFS += -DNO_PRINT_DESC
|
||||
|
||||
# Print High-speed Hub descriptor
|
||||
#OPT_DEFS += -DPRINT_DESC_HSHUB
|
||||
OPT_DEFS += -DNO_PRINT_DESC_HSHUB
|
||||
|
||||
# Print HID Report descriptor
|
||||
#OPT_DEFS += -DPRINT_DESC_REPORT
|
||||
OPT_DEFS += -DNO_PRINT_DESC_REPORT
|
||||
|
||||
|
||||
|
||||
include $(TMK_DIR)/protocol/lufa.mk
|
||||
include $(TMK_DIR)/common.mk
|
||||
include $(TMK_DIR)/rules.mk
|
||||
|
||||
|
||||
|
||||
$(OBJDIR)/$(USB_DESC_DUMP_DIR)/USB_desc_dump.cpp.o : $(OBJDIR)/$(USB_DESC_DUMP_DIR)/USB_desc_dump.cpp $(OBJDIR)/$(USB_DESC_DUMP_DIR)/desc.h
|
||||
@echo
|
||||
mkdir -p $(@D)
|
||||
@echo $(MSG_COMPILING_CPP) $<
|
||||
$(CC) -c $(ALL_CPPFLAGS) $< -o $@
|
||||
|
||||
$(OBJDIR)/$(USB_DESC_DUMP_DIR)/USB_desc_dump.cpp : $(TMK_DIR)/$(USB_DESC_DUMP_DIR)/USB_desc_dump.ino
|
||||
@echo
|
||||
mkdir -p $(@D)
|
||||
$(COPY) $< $@
|
||||
|
||||
$(OBJDIR)/$(USB_DESC_DUMP_DIR)/desc.h : $(TMK_DIR)/$(USB_DESC_DUMP_DIR)/desc.h
|
||||
@echo
|
||||
mkdir -p $(@D)
|
||||
$(COPY) $< $@
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue