From 94e7dbfa4b8e5033c59eb58d717f9f6902ace9b7 Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Thu, 23 Jun 2022 23:24:15 +0200 Subject: [PATCH] drivers/atwinc15x0: blacklist esp32 architecure esp32 vendor code and atwinc15x0 both define conflicting spi_flash_{read, write} functions. esp32 already have build-in WiFi, so it's unlikely to ever use this driver - just blacklist the architecture. --- drivers/atwinc15x0/Makefile.dep | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/atwinc15x0/Makefile.dep b/drivers/atwinc15x0/Makefile.dep index 103b338491c4..ab8e7b49b691 100644 --- a/drivers/atwinc15x0/Makefile.dep +++ b/drivers/atwinc15x0/Makefile.dep @@ -5,8 +5,9 @@ FEATURES_REQUIRED += periph_gpio FEATURES_REQUIRED += periph_gpio_irq FEATURES_REQUIRED += periph_spi -# esp8266 vendor code and atwinc15x0 both define conflicting +# esp8266 and esp32 vendor code and atwinc15x0 both define conflicting # spi_flash_{read, write} functions. -# esp8266 already has build-in WiFi, so it's unlikely to ever +# esp8266 and esp32 already have build-in WiFi, so it's unlikely to ever # use this driver - just blacklist the architecture. FEATURES_BLACKLIST += arch_esp8266 +FEATURES_BLACKLIST += arch_esp32