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

drivers/at: remove the direct dependency to xtimer

`at` is not using the `xtimer` module directly but only through
'isrpipe_read_timeout'.
This commit is contained in:
Gaëtan Harter 2019-03-25 16:39:15 +01:00
parent b07eecd619
commit 29fc58bc79
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B
2 changed files with 0 additions and 2 deletions

View File

@ -32,7 +32,6 @@ endif
ifneq (,$(filter at,$(USEMODULE)))
FEATURES_REQUIRED += periph_uart
USEMODULE += fmt
USEMODULE += xtimer
USEMODULE += isrpipe
USEMODULE += isrpipe_read_timeout
endif

View File

@ -14,7 +14,6 @@
#include "isrpipe.h"
#include "isrpipe/read_timeout.h"
#include "periph/uart.h"
#include "xtimer.h"
#define ENABLE_DEBUG (0)
#include "debug.h"