summaryrefslogtreecommitdiff
path: root/apps/examples/wgetjson/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/wgetjson/Kconfig')
-rw-r--r--apps/examples/wgetjson/Kconfig23
1 files changed, 23 insertions, 0 deletions
diff --git a/apps/examples/wgetjson/Kconfig b/apps/examples/wgetjson/Kconfig
new file mode 100644
index 000000000..2e3b4b3eb
--- /dev/null
+++ b/apps/examples/wgetjson/Kconfig
@@ -0,0 +1,23 @@
+#
+# For a description of the syntax of this configuration file,
+# see misc/tools/kconfig-language.txt.
+#
+
+config EXAMPLES_WGETJSON
+ bool "wget JSON Example"
+ default n
+ depends on NETUTILS_JSON
+ ---help---
+ Enable the wget JSON example
+
+if EXAMPLES_WGETJSON
+
+config EXAMPLES_WGETJSON_MAXSIZE
+ int "Max. JSON Buffer Size"
+ default 10240
+
+config EXAMPLES_WGETJSON_URL
+ string "wget URL"
+ default "http://10.0.0.1/wgetjson/json_cmd.php"
+
+endif