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.
Revision 36:08d94248181b, committed 2018-09-10
- Comitter:
- mbed_official
- Date:
- Mon Sep 10 07:30:20 2018 +0100
- Parent:
- 35:462743fb571e
- Child:
- 37:5bc348e90af0
- Commit message:
- Disable some ciphers not needed by lora example application
These ciphers are not needed by this example application and these
consume about 2500 bytes of ROM.
.
Commit copied from https://github.com/ARMmbed/mbed-os-example-lorawan
Changed in this revision
| mbedtls_lora_config.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/mbedtls_lora_config.h Mon Sep 03 08:45:34 2018 +0100 +++ b/mbedtls_lora_config.h Mon Sep 10 07:30:20 2018 +0100 @@ -34,7 +34,10 @@ // These are only reference configurations for this LoRa example application. // Other LoRa applications might need different configurations. #define MBEDTLS_AES_FEWER_TABLES + #undef MBEDTLS_GCM_C - +#undef MBEDTLS_CHACHA20_C +#undef MBEDTLS_CHACHAPOLY_C +#undef MBEDTLS_POLY1305_C #endif /* MBEDTLS_LORA_CONFIG_H */