Get rid of HW_LAYER_EMS (#5389)

Now we have HW_LAYER(_CPP) for common HW stuff
And HW_LAYER_PORT(_CPP) for ports stuff

Co-authored-by: Andrey Gusakov <dron0gus@gmail.com>
This commit is contained in:
rusefillc 2023-07-04 23:42:13 -04:00 committed by GitHub
parent 8b33fb79bb
commit 67834809d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 2 deletions

View File

@ -238,6 +238,7 @@ CSRC = check.c \
$(DEV_SRC) \
$(BOOTLOADERSRC) \
${HW_MASS_STORAGE_SRC_C} \
$(HW_LAYER) \
$(HW_LAYER_PORT) \
$(HW_LAYER_DRIVERS_CORE) \
$(HW_LAYER_DRIVERS) \

View File

@ -174,6 +174,7 @@ include $(PROJECT_DIR)/hw_layer/drivers/drivers.mk
CSRC = $(ALLCSRC) \
$(BOARDSRC) \
$(DEV_SRC) \
$(HW_LAYER) \
$(HW_LAYER_PORT) \
$(HW_LAYER_DRIVERS_CORE) \
$(FATFSSRC) \

View File

@ -19,6 +19,7 @@ ALLCPPSRC += \
$(CONTROLLERS_ALGO_SRC_CPP) \
$(CONTROLLERS_SENSORS_SRC_CPP) \
$(TUNERSTUDIO_SRC_CPP) \
$(HW_LAYER_CPP) \
$(HW_LAYER_PORT_CPP) \
$(HW_SENSORS_CPP) \
$(SYSTEMSRC_CPP) \

View File

@ -7,7 +7,7 @@ HW_LAYER_INC= $(PROJECT_DIR)/hw_layer $(PROJECT_DIR)/hw_layer/adc \
HW_INC = hw_layer/$(CPU_HWLAYER) \
$(PROJECT_DIR)/hw_layer/ports
HW_LAYER_PORT_CPP = \
HW_LAYER_CPP = \
$(PROJECT_DIR)/hw_layer/pin_repository.cpp \
$(PROJECT_DIR)/hw_layer/microsecond_timer/microsecond_timer.cpp \
$(PROJECT_DIR)/hw_layer/digital_input/digital_input_exti.cpp \
@ -32,7 +32,7 @@ HW_LAYER_PORT_CPP = \
$(PROJECT_DIR)/hw_layer/adc/mcp3208.cpp
ifeq ($(USE_OPENBLT),yes)
HW_LAYER_PORT += \
HW_LAYER += \
$(PROJECT_DIR)/hw_layer/openblt/shared_params.c
endif