1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu: native: adapt xtimer backoff values to periph/timer change

This commit is contained in:
Kaspar Schleiser 2016-01-06 13:57:48 +01:00
parent ceaeee5c5d
commit 5f44a6938d

View File

@ -54,6 +54,14 @@
*/
#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
* here.
*/
#define XTIMER_BACKOFF 200
#define XTIMER_ISR_BACKOFF 200
/** @} */
#ifdef __cplusplus