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

Merge pull request #14244 from fjmolinas/pr_samr21_usec_min

boards/samr21-xpro: increase CONFIG_ZTIMER_USEC_MIN
This commit is contained in:
Francisco 2020-06-12 09:24:52 +02:00 committed by GitHub
commit 01d0e30229
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,8 @@ extern "C" {
*/
#define CONFIG_ZTIMER_USEC_TYPE ZTIMER_TYPE_PERIPH_TIMER
#define CONFIG_ZTIMER_USEC_DEV TIMER_DEV(1)
#define CONFIG_ZTIMER_USEC_MIN (8)
/* timer_set() may underflow for values smaller than 9, set 10 as margin */
#define CONFIG_ZTIMER_USEC_MIN (10)
/** @} */
/**