From 9381ae971066a42ad00def424c29370ced09eb60 Mon Sep 17 00:00:00 2001 From: FreeArtMan Date: Sat, 19 Dec 2015 16:32:12 +0000 Subject: Added menuconfig support. Added default config files for Linux and NetBSD. Added kconf2h tool. Small fixes to README --- mod/Kconfig | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 mod/Kconfig (limited to 'mod/Kconfig') diff --git a/mod/Kconfig b/mod/Kconfig new file mode 100644 index 0000000..50413a0 --- /dev/null +++ b/mod/Kconfig @@ -0,0 +1,51 @@ +menuconfig MOD + bool "Modulation support" + default y + +if MOD + config MOD_FM + bool "FM mod" + default n + depends on FUTURE + + config MOD_FM_DEMOD + bool "FM demod" + default n + + config MOD_WBFM_DEMOD + bool "WBFM demod" + default n + depends on FUTURE + + config MOD_AM_DEMOD + bool "AM demod" + default n + depends on FUTURE + + config MOD_PSK_DEMOD + bool "PSK demod" + default n + depends on FUTURE + + config MOD_PSK31_DEMOD + bool "PSK31 demod" + default n + depends on FUTURE + +endif + +menuconfig PROTO + bool "Protocol support" + default n + +if PROTO + config PROTO_AX25 + bool "AX.25 radio packet support" + default n + depends on FUTURE + + config PROTO_NOAA + bool "NOAA satelite recieving" + default n + depends on FUTURE +endif -- cgit v1.2.3