summaryrefslogtreecommitdiff
path: root/src/app/ccs811test
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2020-08-28 15:25:37 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2020-08-28 15:25:37 +0200
commit3a66ae51c3f34108428e582ef693866d71496d16 (patch)
tree6a8ab3774af1b1077720671a92f40a92d5425bcf /src/app/ccs811test
parente12d6d528705344628568000dc2fddb919457411 (diff)
Expose configuration via Kconfig
Diffstat (limited to 'src/app/ccs811test')
-rw-r--r--src/app/ccs811test/Kconfig2
-rw-r--r--src/app/ccs811test/Makefile.inc8
2 files changed, 7 insertions, 3 deletions
diff --git a/src/app/ccs811test/Kconfig b/src/app/ccs811test/Kconfig
new file mode 100644
index 0000000..a219a0f
--- /dev/null
+++ b/src/app/ccs811test/Kconfig
@@ -0,0 +1,2 @@
+prompt "CCS811 Logger"
+depends on driver_ccs811 && loop && !wakeup
diff --git a/src/app/ccs811test/Makefile.inc b/src/app/ccs811test/Makefile.inc
index 4889e55..6bc097a 100644
--- a/src/app/ccs811test/Makefile.inc
+++ b/src/app/ccs811test/Makefile.inc
@@ -1,3 +1,5 @@
-override arch_drivers += ,i2c
-override drivers += ,ccs811
-loop ?= 1
+ifdef app
+ override arch_drivers += ,i2c
+ override drivers += ,ccs811
+ override loop = 1
+endif