Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of http-example by
Revision 23:6a9d776c9794, committed 2018-01-02
- Comitter:
- Jan Jongboom
- Date:
- Tue Jan 02 15:51:29 2018 +0000
- Parent:
- 22:1b8c2a81c85d
- Child:
- 24:9faf23bbfb7f
- Commit message:
- Set stack size to 8K
Changed in this revision
--- a/README.md Tue Jan 02 15:20:08 2018 +0000 +++ b/README.md Tue Jan 02 15:51:29 2018 +0000 @@ -33,7 +33,7 @@ Default flash size for HTTPS is very large, as the application is loading the default mbed TLS configuration. To use a more optimized version, include `mbedtls_config.h` in your mbed_app.json, by adding: ``` -"MBEDTLS_CONFIG_FILE=\"fotalora_mbedtls_config.h\"" +"MBEDTLS_CONFIG_FILE=\"mbedtls_config.h\"" ``` to the `macros` array.
--- a/mbed_app.json Tue Jan 02 15:20:08 2018 +0000
+++ b/mbed_app.json Tue Jan 02 15:51:29 2018 +0000
@@ -40,6 +40,10 @@
},
"esp8266-debug": {
"value": false
+ },
+
+ "main-stack-size": {
+ "value": 8192
}
},
"macros": ["MBEDTLS_USER_CONFIG_FILE=\"mbedtls_entropy_config.h\"",
--- a/source/select-demo.h Tue Jan 02 15:20:08 2018 +0000 +++ b/source/select-demo.h Tue Jan 02 15:51:29 2018 +0000 @@ -3,9 +3,9 @@ #define DEMO_HTTP 1 #define DEMO_HTTP_SOCKET_REUSE 2 -#define DEMO_HTTPS 3 -#define DEMO_HTTPS_SOCKET_REUSE 4 -#define DEMO_HTTP_IPV6 5 +#define DEMO_HTTP_IPV6 3 +#define DEMO_HTTPS 4 +#define DEMO_HTTPS_SOCKET_REUSE 5 #define DEMO DEMO_HTTP
