We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 56bc450 + 6f9e3ca commit 060de48Copy full SHA for 060de48
libraries/MySensors/MySensor.cpp
@@ -24,9 +24,9 @@
24
25
#ifdef MY_SIGNING_FEATURE
26
// Macros for manipulating signing requirement table
27
-#define DO_SIGN(node) (~_doSign[node>>3]&(1<<(node%8)))
28
-#define SET_SIGN(node) (_doSign[node>>3]&=~(1<<(node%8)))
29
-#define CLEAR_SIGN(node) (_doSign[node>>3]|=(1<<(node%8)))
+#define DO_SIGN(node) (~doSign[node>>3]&(1<<(node%8)))
+#define SET_SIGN(node) (doSign[node>>3]&=~(1<<(node%8)))
+#define CLEAR_SIGN(node) (doSign[node>>3]|=(1<<(node%8)))
30
#endif
31
32
// Inline function and macros
libraries/MySensors/Version.h
@@ -6,6 +6,6 @@
6
#ifndef Version_h
7
#define Version_h
8
9
-#define LIBRARY_VERSION "1.5.2"
+#define LIBRARY_VERSION "1.5.3"
10
11
0 commit comments