Replies: 3 comments 3 replies
-
The current version of Micropython is built with esp-idf 5.0.4. |
Beta Was this translation helpful? Give feedback.
2 replies
-
Down download from: or if you want to build you can create/verify your setup by following the CI setup steps source tools/ci.sh && ci_esp32_idf_setup |
Beta Was this translation helpful? Give feedback.
1 reply
-
This is the build script I use: #!/bin/bash
export PATH="$HOME/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
echo "=========================================================="
echo "Setting up for esp32s3 build"
echo "Using esp-idf-504"
export IDF_PATH="$HOME/disk/esp/esp-idf-504"
export IDF_TARGET="esp32s3"
source $IDF_PATH/export.sh
make V=1 BOARD=ESP32S3_LOLIN_MINI_N4R2
echo "==========================================================" You may need to change the paths to suit your needs. Hope this helps. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have tried using ESP-IDF 4.3, 5.0, and 5.2, but none of them were able to compile. Which version should I use?
Beta Was this translation helpful? Give feedback.
All reactions