From 281db4bfa80e4911a3de2154722aad4bb2502d82 Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Fri, 31 Mar 2023 12:15:08 +0200 Subject: [PATCH] tests/usbus_cdc_ecm: blacklist stm32f429i-disco The board no longer uses the `periph_usbdev_hs` module. Therefore, the maximum number of EPs used is that of the USB OTG FS peripheral, which is only 4. This is not sufficient for this test application since the board uses `stdio_cdc_acm`. --- tests/usbus_cdc_ecm/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/usbus_cdc_ecm/Makefile b/tests/usbus_cdc_ecm/Makefile index fc1a96e1e4..b25c9e7699 100644 --- a/tests/usbus_cdc_ecm/Makefile +++ b/tests/usbus_cdc_ecm/Makefile @@ -12,6 +12,7 @@ USEMODULE += ps # Boards that don't have enough endpoints to use CDC ACM together with CDC ECM ifeq (,$(filter stdio_%,$(filter-out stdio_cdc_acm,$(USEMODULE)))) BOARD_BLACKLIST += \ + stm32f429i-disco \ stm32f4discovery \ weact-f401cc \ weact-f401ce \