summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2020-11-30 13:50:04 +0100
committerDaniel Friesel <daniel.friesel@uos.de>2020-11-30 13:50:04 +0100
commitdae84b7e7f6290ff96cc41b59cab268243063c76 (patch)
tree67efeb67e6d357bc553f840499448cfbd881bf57 /Makefile
parent3f6539e947e10859a81f808263d53e989e070e46 (diff)
add aemr_transition_sync driver (for evaluation purposes only)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 9ab2f86..613741c 100644
--- a/Makefile
+++ b/Makefile
@@ -111,6 +111,10 @@ ifneq ($(findstring resistive_load,${drivers}), )
CONFIG_driver_resistive_load = y
endif
+ifneq ($(findstring aemr_transition_sync,${drivers}), )
+ CONFIG_driver_aemr_transition_sync = y
+endif
+
ifneq ($(findstring softi2c,${drivers}), )
CONFIG_driver_softi2c = y
endif
@@ -241,6 +245,10 @@ ifdef CONFIG_driver_resistive_load
COMMON_FLAGS += -DRESISTIVE_LOAD_PIN4=GPIO::${resistor4_pin}
endif
+ifdef CONFIG_driver_aemr_transition_sync
+ CXX_TARGETS += src/driver/aemr_transition_sync.cc
+endif
+
ifdef CONFIG_driver_softi2c
CXX_TARGETS += src/driver/soft_i2c.cc
COMMON_FLAGS += -DDRIVER_SOFTI2C