Skip to content

Commit

Permalink
Merge pull request #362 from fallberg/fixes
Browse files Browse the repository at this point in the history
Fixed doSign variable name and bumped version to 1.5.3
  • Loading branch information
fallberg committed Jan 20, 2016
2 parents 56bc450 + 6f9e3ca commit 060de48
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions libraries/MySensors/MySensor.cpp
Expand Up @@ -24,9 +24,9 @@

#ifdef MY_SIGNING_FEATURE
// Macros for manipulating signing requirement table
#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)))
#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)))
#endif

// Inline function and macros
Expand Down
2 changes: 1 addition & 1 deletion libraries/MySensors/Version.h
Expand Up @@ -6,6 +6,6 @@
#ifndef Version_h
#define Version_h

#define LIBRARY_VERSION "1.5.2"
#define LIBRARY_VERSION "1.5.3"

#endif

0 comments on commit 060de48

Please sign in to comment.