
This is a simple mbed client example demonstrating, registration of a device with mbed Device Connector and reading and writing values as well as deregistering on different Network Interfaces including Ethernet, WiFi, 6LoWPAN ND and Thread respectively.
Fork of mbed-os-example-client by
Revision 24:5db6419ee4be, committed 2016-10-25
- Comitter:
- mbed_official
- Date:
- Tue Oct 25 07:45:08 2016 +0100
- Parent:
- 23:b799cc2a6c21
- Child:
- 25:32b45b3e4d12
- Commit message:
- Merge pull request #98 from ARMmbed/IOTCLT-1128
IOTCLT-1128 - mbedTLS - add more explicit note about minimal config
Commit copied from https://github.com/ARMmbed/mbed-os-example-client
Changed in this revision
mbedtls_mbed_client_config.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/mbedtls_mbed_client_config.h Mon Oct 24 15:00:09 2016 +0100 +++ b/mbedtls_mbed_client_config.h Tue Oct 25 07:45:08 2016 +0100 @@ -1,6 +1,15 @@ -/* +/** * Minimal configuration for using mbedtls as part of mbed-client * + * NOTE! This is an optimized, minimal configuration for mbed Client. + * We know it works with mbed Client but if you want to add more + * services/communications to the application yourself - please ensure + * you update this configuration accordingly. The default configuration + * can be found from mbedTLS Github: + * + * https://github.com/ARMmbed/mbedtls/blob/development/include/mbedtls/config.h + * + * * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * @@ -101,7 +110,7 @@ // dep of the previous #define MBEDTLS_BASE64_C -// reduce IO buffer to save RAM, default is 16KB +// Reduce IO buffer to save RAM, default is 16KB #define MBEDTLS_SSL_MAX_CONTENT_LEN 2048 // define to save 8KB RAM at the expense of ROM