IN_RANGE
#define IN_RANGE BIT(5)
#define IN_RANGE(value,low,high) ((value >= low) && (value <= high))