Populate USB_PRODUCT and USB_MANUFACTURER if in boards file using Caterina
This commit is contained in:
parent
e88f7e1a9f
commit
8a313c5d94
2 changed files with 18 additions and 1 deletions
18
Arduino.mk
18
Arduino.mk
|
@ -716,6 +716,22 @@ ifeq ($(strip $(NO_CORE)),)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifndef USB_PRODUCT
|
||||||
|
USB_PRODUCT := $(call PARSE_BOARD,$(BOARD_TAG),build.usb_product)
|
||||||
|
ifdef USB_PRODUCT
|
||||||
|
$(call show_config_variable,USB_PRODUCT,[COMPUTED])
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifndef USB_MANUFACTURER
|
||||||
|
USB_MANUFACTURER := $(call PARSE_BOARD,$(BOARD_TAG),build.usb_manufacturer)
|
||||||
|
ifndef USB_MANUFACTURER
|
||||||
|
USB_MANUFACTURER = "Unknown"
|
||||||
|
else
|
||||||
|
$(call show_config_variable,USB_MANUFACTURER,[COMPUTED])
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
# add caterina flag to ARD_RESET_OPTS
|
# add caterina flag to ARD_RESET_OPTS
|
||||||
ARD_RESET_OPTS += --caterina
|
ARD_RESET_OPTS += --caterina
|
||||||
endif
|
endif
|
||||||
|
@ -1160,7 +1176,7 @@ CPPFLAGS += $(OPTIMIZATION_FLAGS)
|
||||||
|
|
||||||
# USB IDs for the Caterina devices like leonardo or micro
|
# USB IDs for the Caterina devices like leonardo or micro
|
||||||
ifneq ($(CATERINA),)
|
ifneq ($(CATERINA),)
|
||||||
CPPFLAGS += -DUSB_VID=$(USB_VID) -DUSB_PID=$(USB_PID)
|
CPPFLAGS += -DUSB_VID=$(USB_VID) -DUSB_PID=$(USB_PID) '-DUSB_PRODUCT=$(USB_PRODUCT)' '-DUSB_MANUFACTURER=$(USB_MANUFACTURER)'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# $(TOOL_PREFIX)-gcc version that we can do maths on
|
# $(TOOL_PREFIX)-gcc version that we can do maths on
|
||||||
|
|
|
@ -10,6 +10,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it
|
||||||
- Fix: Add -fno-devirtualize flag to workaround g++ segfault bug (issue #486). (https://github.com/sej7278)
|
- Fix: Add -fno-devirtualize flag to workaround g++ segfault bug (issue #486). (https://github.com/sej7278)
|
||||||
- Fix: Quote the prefix tag in the space_pad_to function
|
- Fix: Quote the prefix tag in the space_pad_to function
|
||||||
- Fix: recognize serial monitors with full path in MONITOR_CMD
|
- Fix: recognize serial monitors with full path in MONITOR_CMD
|
||||||
|
- Fix: Grab USB_PRODUCT and USB_MANUFACTURER from boards.txt for 32u4 boards (issue #594).
|
||||||
- Tweak: Move chip erase flag from set_fuses to ispload to prevent sketch being nuked when setting fuses
|
- Tweak: Move chip erase flag from set_fuses to ispload to prevent sketch being nuked when setting fuses
|
||||||
- Tweak: Set ARDMK_VERSION to 1.6 (https://github.com/sej7278)
|
- Tweak: Set ARDMK_VERSION to 1.6 (https://github.com/sej7278)
|
||||||
- Tweak: Move non-standard-related items from CxxFLAGS_STD to CxxFLAGS (issue #523) (https://github.com/sej7278)
|
- Tweak: Move non-standard-related items from CxxFLAGS_STD to CxxFLAGS (issue #523) (https://github.com/sej7278)
|
||||||
|
|
Loading…
Reference in a new issue