mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
xtimer: Add XTIMER_SHIFT = 6 automatic option
This commit is contained in:
parent
1eaec4973f
commit
0befe39333
@ -610,6 +610,8 @@ void xtimer_set_timeout_flag(xtimer_t *t, uint32_t timeout);
|
||||
#define XTIMER_SHIFT (4)
|
||||
#elif (XTIMER_HZ >> 5 == XTIMER_HZ_BASE) || (XTIMER_HZ << 5 == XTIMER_HZ_BASE)
|
||||
#define XTIMER_SHIFT (5)
|
||||
#elif (XTIMER_HZ >> 6 == XTIMER_HZ_BASE) || (XTIMER_HZ << 6 == XTIMER_HZ_BASE)
|
||||
#define XTIMER_SHIFT (6)
|
||||
#else
|
||||
#error "XTIMER_SHIFT cannot be derived for given XTIMER_HZ, verify settings!"
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user