nuttx-apps/examples/wgetjson/Kconfig
patacongo 3c077acd5c Add apps/examples/wgetjson from Darcy Gong
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5281 42af7a65-404d-4744-a932-0658087f49c3
2012-10-31 16:04:45 +00:00

24 lines
442 B
Plaintext

#
# 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