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

13 lines
363 B
Makefile

FEATURES_REQUIRED += periph_uart
USEMODULE += fmt
USEMODULE += isrpipe
USEMODULE += isrpipe_read_timeout
_AT_ISR_MODULE := $(filter at_urc_isr_%,$(USEMODULE))
ifneq (,$(_AT_ISR_MODULE))
# pull in the correspondant event_thread_<priority> module
USEMODULE += $(_AT_ISR_MODULE:at_urc_isr_%=event_thread_%)
USEMODULE += at_urc
USEMODULE += at_urc_isr
endif