Warning: suggest parentheses around comparison in operand of &

pretty much helped.
This commit is contained in:
AnHardt 2015-03-15 22:52:50 +01:00
parent 5efc798642
commit f0dcea7e14

View File

@ -33,7 +33,7 @@
#endif
#define BIT(b) (1<<(b))
#define TEST(n,b) ((n)&BIT(b)!=0)
#define TEST(n,b) (((n)&BIT(b))!=0)
// Arduino < 1.0.0 does not define this, so we need to do it ourselves
#ifndef analogInputToDigitalPin