summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2023-01-01 18:03:19 +0100
committerDaniel Friesel <derf@finalrewind.org>2023-01-01 18:03:19 +0100
commit7f0db02066a7554b959fa264fcc200b2a2e4c929 (patch)
treea50fad76f732daa8938b0c06393a439f345ee14d /Makefile
parent2501cd668a26bf6d4e9153f18a6e14695c4b5ed1 (diff)
Add driver for ADS111x 16-Bit ADC
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ca3816c..cc8e840 100644
--- a/Makefile
+++ b/Makefile
@@ -46,6 +46,10 @@ ifdef CONFIG_driver_dummy
CXX_TARGETS += src/driver/dummy.cc
endif
+ifdef CONFIG_driver_ads111x
+ CXX_TARGETS += src/driver/ads111x.cc
+endif
+
ifdef CONFIG_driver_lm75
CXX_TARGETS += src/driver/lm75.cc
endif