[2.0.x] G33 probe error handling

This commit is contained in:
LVD-AC
2017-11-25 10:59:46 +01:00
committed by Scott Lahteine
parent d3ed0f53cd
commit 65f365333f
5 changed files with 51 additions and 56 deletions

View File

@ -96,7 +96,7 @@
// Macros for bit masks
#ifndef _BV
#define _BV(B) (1UL<<(B))
#define _BV(n) (1<<(n))
#endif
#define TEST(n,b) (((n)&_BV(b))!=0)
#define SBI(n,b) (n |= _BV(b))