Skip to content

Commit 1f4eb9a

Browse files
authored
Update hmacs.c
Added a small comment to explain the file's task.
1 parent 36f4a30 commit 1f4eb9a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hmacs.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
#include <stdint.h>
2020
#include <Arduino.h>
2121

22+
//This array contains the hmacs used by the library, currently the index is equal to the node ID
2223
static const uint8_t hmacs[2][20] PROGMEM = {
2324
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
2425
{255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255},
25-
};
26+
};

0 commit comments

Comments
 (0)