summaryrefslogtreecommitdiff
path: root/tinyusb/common/binary.h
diff options
context:
space:
mode:
Diffstat (limited to 'tinyusb/common/binary.h')
-rw-r--r--tinyusb/common/binary.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/common/binary.h b/tinyusb/common/binary.h
index e7669853a..0badd6b3b 100644
--- a/tinyusb/common/binary.h
+++ b/tinyusb/common/binary.h
@@ -66,7 +66,7 @@
#define BIT_CLR_(x, n) ( (x) & (~BIT_(n)) )
/// test n-th bit of x
-#define BIT_TEST_(x, n) ( (x) & BIT_(n) )
+#define BIT_TEST_(x, n) ( ((x) & BIT_(n)) ? true : false )
#if defined(__GNUC__) && !defined(__CC_ARM)