summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/system.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/system.h b/firmware/export/system.h
index 489ed8dc12..d5da2225d6 100644
--- a/firmware/export/system.h
+++ b/firmware/export/system.h
@@ -266,8 +266,8 @@ static inline uint32_t swap_odd_even32(uint32_t value)
266 266
267#endif /* !SIMULATOR */ 267#endif /* !SIMULATOR */
268 268
269#ifndef TEST_BIT_N 269#ifndef BIT_N
270#define TEST_BIT_N(n, mask) ((1UL << (n)) & (mask)) 270#define BIT_N(n) (1UL << (n))
271#endif 271#endif
272 272
273/* Declare this as HIGHEST_IRQ_LEVEL if they don't differ */ 273/* Declare this as HIGHEST_IRQ_LEVEL if they don't differ */