From 9abd0e7a0716a611ee817d6cb9a4c74c9e065e34 Mon Sep 17 00:00:00 2001 From: Klaus K Wilting Date: Sun, 15 Mar 2020 18:09:41 +0100 Subject: [PATCH] switch AES to avoid compiler warnings in lmic.c --- src/lmic_config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lmic_config.h b/src/lmic_config.h index f888ac0e..df3c5668 100644 --- a/src/lmic_config.h +++ b/src/lmic_config.h @@ -87,12 +87,12 @@ // implementation is optimized for speed on 32-bit processors using // fairly big lookup tables, but it takes up big amounts of flash on the // AVR architecture. -#define USE_ORIGINAL_AES +//#define USE_ORIGINAL_AES // // This selects the AES implementation written by Ideetroon for their // own LoRaWAN library. It also uses lookup tables, but smaller // byte-oriented ones, making it use a lot less flash space (but it is // also about twice as slow as the original). -// #define USE_IDEETRON_AES +#define USE_IDEETRON_AES // //#define USE_MBEDTLS_AES