switch AES to avoid compiler warnings in lmic.c

This commit is contained in:
Klaus K Wilting 2020-03-15 18:09:41 +01:00
parent 10c96759f4
commit 9abd0e7a07

View File

@ -87,12 +87,12 @@
// implementation is optimized for speed on 32-bit processors using // implementation is optimized for speed on 32-bit processors using
// fairly big lookup tables, but it takes up big amounts of flash on the // fairly big lookup tables, but it takes up big amounts of flash on the
// AVR architecture. // AVR architecture.
#define USE_ORIGINAL_AES //#define USE_ORIGINAL_AES
// //
// This selects the AES implementation written by Ideetroon for their // This selects the AES implementation written by Ideetroon for their
// own LoRaWAN library. It also uses lookup tables, but smaller // own LoRaWAN library. It also uses lookup tables, but smaller
// byte-oriented ones, making it use a lot less flash space (but it is // byte-oriented ones, making it use a lot less flash space (but it is
// also about twice as slow as the original). // also about twice as slow as the original).
// #define USE_IDEETRON_AES #define USE_IDEETRON_AES
// //
//#define USE_MBEDTLS_AES //#define USE_MBEDTLS_AES