aboutsummaryrefslogtreecommitdiff
path: root/apps/examples
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples')
-rw-r--r--apps/examples/wgetjson/Kconfig2
-rw-r--r--apps/examples/wgetjson/wgetjson_main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/examples/wgetjson/Kconfig b/apps/examples/wgetjson/Kconfig
index 2e3b4b3eb..f7f4f236c 100644
--- a/apps/examples/wgetjson/Kconfig
+++ b/apps/examples/wgetjson/Kconfig
@@ -14,7 +14,7 @@ if EXAMPLES_WGETJSON
config EXAMPLES_WGETJSON_MAXSIZE
int "Max. JSON Buffer Size"
- default 10240
+ default 1024
config EXAMPLES_WGETJSON_URL
string "wget URL"
diff --git a/apps/examples/wgetjson/wgetjson_main.c b/apps/examples/wgetjson/wgetjson_main.c
index 7f3096797..a137af438 100644
--- a/apps/examples/wgetjson/wgetjson_main.c
+++ b/apps/examples/wgetjson/wgetjson_main.c
@@ -58,7 +58,7 @@
****************************************************************************/
#ifndef CONFIG_EXAMPLES_WGETJSON_MAXSIZE
-# define CONFIG_EXAMPLES_WGETJSON_MAXSIZE 1024*10
+# define CONFIG_EXAMPLES_WGETJSON_MAXSIZE 1024
#endif
#ifndef CONFIG_EXAMPLES_EXAMPLES_WGETJSON_URL