@ -98,7 +98,7 @@
#define NUM_SERIAL 1
#endif
#define _BV(bit) (1 << (bit))
#define _BV(b) (1UL << (b))
/**
* TODO: review this to return 1 for pins that are not analog input
@ -29,7 +29,7 @@
#ifndef _FASTIO_STM32F7_H
#define _FASTIO_STM32F7_H
#define READ(IO) digitalRead(IO)
#define WRITE(IO, v) digitalWrite(IO,v)
@ -95,9 +95,8 @@
#define STRINGIFY(M) STRINGIFY_(M)
// Macros for bit masks
#ifndef _BV
#undef _BV // Marlin needs 32-bit unsigned!
#define _BV(n) (1<<(n))
#define TEST(n,b) (((n)&_BV(b))!=0)
#define SBI(n,b) (n |= _BV(b))
#define CBI(n,b) (n &= ~_BV(b))