Page 1 of 1

VSCode Espressif IDF extension forked version of ESP-IDF

Posted: Fri Sep 02, 2022 3:39 pm
by T0biasCZe
Hi, i need to build one esp32 app, and it needs forked version of the esp-idf enviroment, but i cant figure out how to do it in the VS code. In the install config, there are official builds, and find esp-idf in your system. I tried find esp-idf and pointed it to github download of the forked version, but it just throws error
Image
Image
how do i use the fork in the extension?

Re: VSCode Espressif IDF extension forked version of ESP-IDF

Posted: Thu Sep 22, 2022 11:03 am
by sukeshak
You can use ESP-IDF docker and use custom images to achieve it. You can select branch or tag for the version.
https://docs.espressif.com/projects/esp ... image.html

Code: Select all

docker build -t idf-custom:v4.4.1-esp32c3 \
    --build-arg IDF_CLONE_BRANCH_OR_TAG=v4.4.1 \
    --build-arg IDF_CLONE_SHALLOW=1 \
    --build-arg IDF_INSTALL_TARGETS=esp32c3 \
    tools/docker