From 3a66ae51c3f34108428e582ef693866d71496d16 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 28 Aug 2020 15:25:37 +0200 Subject: Expose configuration via Kconfig --- src/app/ccs811test/Kconfig | 2 ++ src/app/ccs811test/Makefile.inc | 8 +++++--- 2 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 src/app/ccs811test/Kconfig (limited to 'src/app/ccs811test') 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 -- cgit v1.2.3