summaryrefslogtreecommitdiff
path: root/Kconfig
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2017-05-14 16:03:46 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2017-05-16 23:24:34 +0200
commitb502c816326908d04252ea3346f07811e8bdd42c (patch)
tree58fec07463d53c6b99632f2c09eec3e618277e62 /Kconfig
parent037d84bed61fb93a5292d0194bbf734fd2927378 (diff)
downloadradio-controller-b502c816326908d04252ea3346f07811e8bdd42c.tar.gz
radio-controller-b502c816326908d04252ea3346f07811e8bdd42c.tar.bz2
radio-controller-b502c816326908d04252ea3346f07811e8bdd42c.tar.xz
radio-controller-b502c816326908d04252ea3346f07811e8bdd42c.zip
wip, experimenting with kconfig in mcucpp.
Diffstat (limited to 'Kconfig')
-rw-r--r--Kconfig30
1 files changed, 0 insertions, 30 deletions
diff --git a/Kconfig b/Kconfig
deleted file mode 100644
index 0fd66ed..0000000
--- a/Kconfig
+++ /dev/null
@@ -1,30 +0,0 @@
-mainmenu "MCU C++ Configuration"
-
-config TINYPRINTF
- bool "Enable tinyprintf"
-
-choice PRINTF_TARGET
- prompt "printf() target"
-
- config PRINTF_TARGET_SEMIHOSTING
- bool "Semihosting"
-
- config PRINTF_TARGET_UART
- bool "UART"
-
-endchoice
-
-config SEMIHOSTING
- bool "Enable semihosting"
-
-menu "Semihosting settings"
- depends on SEMIHOSTING
-
-config SEMIHOSTING_PUTCHAR
- bool "Enable putchar() implementation with semihosting"
- default y
-
-config SEMIHOSTING_PUTS
- bool "Enable puts() implementation with semihosting"
- default y
-endmenu