From ad90b0b7b17f9897cc2f0f685fd2a8a81e4cb2b2 Mon Sep 17 00:00:00 2001 From: "Sergio R. Caprile" Date: Wed, 13 Dec 2023 17:24:16 -0300 Subject: [PATCH] fix for new IDF required version --- examples/esp32/micropython/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/esp32/micropython/Makefile b/examples/esp32/micropython/Makefile index f6a434af..03f8212f 100644 --- a/examples/esp32/micropython/Makefile +++ b/examples/esp32/micropython/Makefile @@ -2,7 +2,7 @@ THISDIR = $(realpath $(CURDIR)) ROOTDIR = $(realpath $(CURDIR)/../../..) PORT ?= /dev/ttyUSB0 -DOCKER ?= docker run --rm $(DA) -v $(ROOTDIR):$(ROOTDIR) -w $(THISDIR) espressif/idf:v5.0.2 +DOCKER ?= docker run --rm $(DA) -v $(ROOTDIR):$(ROOTDIR) -w $(THISDIR) espressif/idf:v5.0.4 # Note that the esp32 port needs the extra .. for relative paths due to the location of its main CMakeLists.txt file CMD ?= bash -c '$(MAKE) -C micropython/ports/esp32 submodules && $(MAKE) -C micropython/ports/esp32 USER_C_MODULES=../../../../mongoose/micropython.cmake'