ESP32 Port Tools

General discussions and questions abound development of code with MicroPython that is not hardware specific.
Target audience: MicroPython Users.
Post Reply
tangerino
Posts: 17
Joined: Sun Jul 25, 2021 8:34 am

ESP32 Port Tools

Post by tangerino » Thu Jul 28, 2022 6:14 pm

What is the official IDF version to be used?
If there is no "official" the one to use then.
I tried V4.4 but got some weird memory behavior

Thank you in advance for sharing.

Lobo-T
Posts: 36
Joined: Tue Nov 16, 2021 2:36 pm

Re: ESP32 Port Tools

Post by Lobo-T » Fri Jul 29, 2022 12:28 pm

v4.4 should work.

If I have understood things correctly this is the file that runs the automatic tests on github:
https://github.com/micropython/micropyt ... _esp32.yml
This line runs this function which eventually ends up running git -C esp-idf checkout v4.4 here.

Christian Walther
Posts: 169
Joined: Fri Aug 19, 2016 11:55 am

Re: ESP32 Port Tools

Post by Christian Walther » Fri Jul 29, 2022 5:14 pm

As far as I remember different versions are used for different boards and/or releases. You can check by installing the closest official (reasonably recent) firmware to what you would like to achieve and running

Code: Select all

import platform; platform.platform()

Post Reply