1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
19499: makefiles/features_modules: ignore periph_wdt_auto_start r=benpicco a=benpicco



19500: makefiles/features_modules: ignore periph_spidev_linux r=benpicco a=benpicco



Co-authored-by: Benjamin Valentin <benpicco@beuth-hochschule.de>
This commit is contained in:
bors[bot] 2023-04-24 23:26:07 +00:00 committed by GitHub
commit 70e91e4cac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,6 +40,7 @@ PERIPH_IGNORE_MODULES := \
periph_uart_collision \ periph_uart_collision \
periph_uart_rxstart_irq \ periph_uart_rxstart_irq \
periph_wdog \ periph_wdog \
periph_wdt_auto_start \
# #
PERIPH_MODULES := $(filter-out $(PERIPH_IGNORE_MODULES),\ PERIPH_MODULES := $(filter-out $(PERIPH_IGNORE_MODULES),\
$(filter periph_%,$(USEMODULE))) $(filter periph_%,$(USEMODULE)))
@ -100,7 +101,8 @@ USEMODULE += $(filter arduino_pwm, $(FEATURES_USED))
# always register a peripheral driver as a required feature when the corresponding # always register a peripheral driver as a required feature when the corresponding
# module is requested # module is requested
PERIPH_IGNORE_MODULES += periph_usbdev_clk periph_gpio_mock periph_gpio_linux PERIPH_IGNORE_MODULES += periph_usbdev_clk periph_gpio_mock periph_gpio_linux periph_spidev_linux
ifneq (,$(filter periph_%,$(DEFAULT_MODULE))) ifneq (,$(filter periph_%,$(DEFAULT_MODULE)))
FEATURES_REQUIRED += $(filter-out $(PERIPH_IGNORE_MODULES),$(filter periph_%,$(USEMODULE))) FEATURES_REQUIRED += $(filter-out $(PERIPH_IGNORE_MODULES),$(filter periph_%,$(USEMODULE)))
endif endif