Upgrade to version 3.3 of arduino-lmic

This commit is contained in:
Manuel Bl
2021-01-05 21:57:11 +01:00
parent 3086b1bb58
commit 5c695fd223
5 changed files with 16 additions and 7 deletions

View File

@ -34,9 +34,9 @@
// This should be defined elsewhere
void lmic_aes_encrypt(u1_t *data, u1_t *key);
// global area for passing parameters (aux, key) and for storing round keys
// global area for passing parameters (aux, key)
u4_t AESAUX[16/sizeof(u4_t)];
u4_t AESKEY[11*16/sizeof(u4_t)];
u4_t AESKEY[16/sizeof(u4_t)];
// Shift the given buffer left one bit
static void shift_left(xref2u1_t buf, u1_t len) {