summaryrefslogtreecommitdiff
path: root/mod
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2015-12-19 16:32:12 +0000
committerFreeArtMan <dos21h@gmail.com>2015-12-19 16:32:12 +0000
commit9381ae971066a42ad00def424c29370ced09eb60 (patch)
tree93e69c6920579ef0f499a9c79aab67d9aa1bc474 /mod
parent80971b7c44ef1066b6555c5802b1f1d67e20bed2 (diff)
downloadradiola-9381ae971066a42ad00def424c29370ced09eb60.tar.gz
radiola-9381ae971066a42ad00def424c29370ced09eb60.zip
Added menuconfig support. Added default config files for Linux and NetBSD. Added kconf2h tool. Small fixes to README
Diffstat (limited to 'mod')
-rw-r--r--mod/Kconfig51
1 files changed, 51 insertions, 0 deletions
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