Lines Matching refs:idf
7 IDF Docker image (``espressif/idf``) is intended for building applications and libraries with speci…
32 …You can check the up-to-date list of available tags at https://hub.docker.com/r/espressif/idf/tags.
40 Before using the ``espressif/idf`` Docker image locally, make sure you have Docker installed. Follo…
49 docker run --rm -v $PWD:/project -w /project espressif/idf idf.py build
57 - ``espressif/idf``: uses Docker image ``espressif/idf`` with tag ``latest`` (implicitly added by D…
58 - ``idf.py build``: runs this command inside the container
60 To build with a specific docker image tag, specify it as ``espressif/idf:TAG``, for example::
62 docker run --rm -v $PWD:/project -w /project espressif/idf:release-v4.0 idf.py build
64 You can check the up-to-date list of available tags at https://hub.docker.com/r/espressif/idf/tags.
72 docker run --rm -v $PWD:/project -w /project espressif/idf make defconfig all -j4
81 …docker run --rm -v $PWD:/project -v kconfig:/opt/esp/idf/tools/kconfig -w /project espressif/idf m…
92 docker run --rm -v $PWD:/project -w /project -it espressif/idf
95 Then inside the container, use ``idf.py`` as usual::
97 idf.py menuconfig
98 idf.py build
102 …Commands which communicate with the development board, such as ``idf.py flash`` and ``idf.py monit…