
basic loraWAN sending, some settings done-- no keys or any of that though
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 */