-
-
Notifications
You must be signed in to change notification settings - Fork 40.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor CTPC logic to allow future converters (#16621)
* Refactor CTPC logic to allow future converters * Update builddefs/converters.mk Co-authored-by: Stefan Kerkmann <[email protected]> Co-authored-by: Stefan Kerkmann <[email protected]>
- Loading branch information
Showing
5 changed files
with
330 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
ifeq ($(strip $(CTPC)), yes) | ||
CONVERT_TO_PROTON_C=yes | ||
endif | ||
ifeq ($(strip $(CONVERT_TO_PROTON_C)), yes) | ||
CONVERT_TO=proton_c | ||
endif | ||
|
||
# TODO: opt in rather than assume everything uses a pro micro | ||
PIN_COMPATIBLE ?= promicro | ||
ifneq ($(CONVERT_TO),) | ||
# glob to search each platfrorm and/or check for valid converter | ||
CONVERTER := $(wildcard $(PLATFORM_PATH)/*/converters/$(PIN_COMPATIBLE)_to_$(CONVERT_TO)/) | ||
ifeq ($(CONVERTER),) | ||
$(call CATASTROPHIC_ERROR,Converting from '$(PIN_COMPATIBLE)' to '$(CONVERT_TO)' not possible!) | ||
endif | ||
|
||
TARGET := $(TARGET)_$(CONVERT_TO) | ||
|
||
# Configure any defaults | ||
OPT_DEFS += -DCONVERT_TO_$(strip $(shell echo $(CONVERT_TO) | tr '[:lower:]' '[:upper:]')) | ||
OPT_DEFS += -DCONVERTER_ENABLED | ||
VPATH += $(CONVERTER) | ||
|
||
# Finally run any converter specific logic | ||
include $(CONVERTER)/converter.mk | ||
endif |
Oops, something went wrong.