2012-10-31 17:04:45 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:14:53 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-10-31 17:04:45 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
config EXAMPLES_WGETJSON
|
2018-09-03 17:29:56 +02:00
|
|
|
tristate "wget JSON Example"
|
2012-10-31 17:04:45 +01:00
|
|
|
default n
|
2020-09-29 09:13:01 +02:00
|
|
|
depends on NETUTILS_CJSON
|
2012-10-31 17:04:45 +01:00
|
|
|
---help---
|
|
|
|
Enable the wget JSON example
|
|
|
|
|
|
|
|
if EXAMPLES_WGETJSON
|
|
|
|
|
|
|
|
config EXAMPLES_WGETJSON_MAXSIZE
|
|
|
|
int "Max. JSON Buffer Size"
|
2012-10-31 18:53:28 +01:00
|
|
|
default 1024
|
2012-10-31 17:04:45 +01:00
|
|
|
|
|
|
|
config EXAMPLES_WGETJSON_URL
|
|
|
|
string "wget URL"
|
|
|
|
default "http://10.0.0.1/wgetjson/json_cmd.php"
|
|
|
|
|
2012-11-03 01:00:56 +01:00
|
|
|
config EXAMPLES_WGETPOST_URL
|
|
|
|
string "wget_post URL"
|
|
|
|
default "http://10.0.0.1/wgetjson/post_cmd.php"
|
|
|
|
|
2012-10-31 17:04:45 +01:00
|
|
|
endif
|