Skip to content

Commit 986cda8

Browse files
committed
examples/gnrc/mqtt/paho-mqtt: disable WiFi for ESP32-H2
1 parent dcce366 commit 986cda8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

examples/networking/mqtt/paho-mqtt/Makefile.board.dep

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Put board specific dependencies here
22

33
ifneq (,$(filter arch_esp,$(FEATURES_USED)))
4-
USEMODULE += esp_wifi
4+
ifneq (esp32h2,$(CPU_FAM))
5+
# ESP32-H2 doesn't have WiFi module
6+
USEMODULE += esp_wifi
7+
endif
58
endif
69

710
ifneq (,$(filter native native32 native64,$(BOARD)))

0 commit comments

Comments
 (0)