LMIC lib Lora OTA device for Everynet

Fork of LMiC-10secs by Alcatel-Lucent IoT Development

Revision:
9:c5820ce68bd6
Parent:
6:71f4de8e79e0
--- a/aes.cpp	Mon Feb 08 10:39:01 2016 +0000
+++ b/aes.cpp	Tue Feb 23 08:41:36 2016 +0000
@@ -337,8 +337,8 @@
                 if( mode & AES_CTR ) { // xor block (partially)
                 
                     t0 = (len > 16) ? 16: len;
-                    debug_str("Payload before XOR:");
-                    debug_buf(buf,len);
+                    /*debug_str("Payload before XOR:");
+                    debug_buf(buf,len);*/
                     for(t1=0; t1<t0; t1++) {
                         buf[t1] ^= (a0>>24);
                         a0 <<= 8;