summaryrefslogtreecommitdiff
path: root/src/app/countertest
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/countertest
parente12d6d528705344628568000dc2fddb919457411 (diff)
Expose configuration via Kconfig
Diffstat (limited to 'src/app/countertest')
-rw-r--r--src/app/countertest/Kconfig2
-rw-r--r--src/app/countertest/Makefile.inc6
2 files changed, 6 insertions, 2 deletions
diff --git a/src/app/countertest/Kconfig b/src/app/countertest/Kconfig
new file mode 100644
index 0000000..141c3f6
--- /dev/null
+++ b/src/app/countertest/Kconfig
@@ -0,0 +1,2 @@
+prompt "Cycle Counter Test"
+depends on meta_driver_counter && loop && !wakeup
diff --git a/src/app/countertest/Makefile.inc b/src/app/countertest/Makefile.inc
index f8a5514..0bf380e 100644
--- a/src/app/countertest/Makefile.inc
+++ b/src/app/countertest/Makefile.inc
@@ -1,2 +1,4 @@
-loop ?= 1
-override arch_drivers += ,counter
+ifdef app
+ override loop = 1
+ override arch_drivers += ,counter
+endif