docs: Add missing target setting in step 7 of Getting Started documentation

This commit is contained in:
Krzysztof Budzynski
2020-08-28 20:23:17 +08:00
parent 948a86ec7b
commit d16a17b01a
2 changed files with 6 additions and 6 deletions

View File

@@ -2,8 +2,6 @@
Get Started
***********
{IDF_TARGET_CL:default = "esp32", esp32 = "esp32", esp32s2 = "esp32s2"}
:link_to_translation:`zh_CN:[中文]`
This document is intended to help you set up the software development environment for the hardware based on the {IDF_TARGET_NAME} chip by Espressif.
@@ -331,7 +329,7 @@ Linux and macOS
.. code-block:: bash
cd ~/esp/hello_world
idf.py set-target {IDF_TARGET_CL}
idf.py set-target {IDF_TARGET_PATH_NAME}
idf.py menuconfig
Windows
@@ -340,10 +338,10 @@ Windows
.. code-block:: batch
cd %userprofile%\esp\hello_world
idf.py set-target {IDF_TARGET_CL}
idf.py set-target {IDF_TARGET_PATH_NAME}
idf.py menuconfig
Setting the target with ``idf.py set-target {IDF_TARGET}`` should be done once, after opening a new project. If the project contains some existing builds and configuration, they will be cleared and initialized. The target may be saved in environment variable to skip this step at all. See :ref:`selecting-idf-target` for additional information.
Setting the target with ``idf.py set-target {IDF_TARGET_PATH_NAME}`` should be done once, after opening a new project. If the project contains some existing builds and configuration, they will be cleared and initialized. The target may be saved in environment variable to skip this step at all. See :ref:`selecting-idf-target` for additional information.
If the previous steps have been done correctly, the following menu appears: