diff --git a/cpu/native/include/periph_conf.h b/cpu/native/include/periph_conf.h index 55fb32f781..6788dcea48 100644 --- a/cpu/native/include/periph_conf.h +++ b/cpu/native/include/periph_conf.h @@ -53,7 +53,6 @@ * @{ */ #define XTIMER_OVERHEAD 14 -#define XTIMER_USLEEP_UNTIL_OVERHEAD 1 /* timer_set_absolute() has a high margin for possible underflow if set with * value not far in the future. To prevent this, we set high backoff values diff --git a/sys/include/xtimer.h b/sys/include/xtimer.h index 8b7b93f41b..69c26a75d7 100644 --- a/sys/include/xtimer.h +++ b/sys/include/xtimer.h @@ -382,18 +382,6 @@ int xtimer_msg_receive_timeout64(msg_t *msg, uint64_t us); #endif #define XTIMER_MASK_SHIFTED XTIMER_TICKS_TO_USEC(XTIMER_MASK) -#ifndef XTIMER_USLEEP_UNTIL_OVERHEAD -/** - * @brief xtimer_usleep_until overhead value - * - * This value specifies the time a xtimer_usleep_until will be late - * if uncorrected. - * - * This is supposed to be defined per-device in e.g., periph_conf.h. - */ -#define XTIMER_USLEEP_UNTIL_OVERHEAD 10 -#endif - #if XTIMER_MASK extern volatile uint32_t _high_cnt; #endif