You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs_espressif/en/additionalfeatures/project-configuration.rst
+113-31
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,82 @@
1
1
Project Configuration Editor
2
2
====================================
3
3
4
-
To allow you to have multiple configurations for the same project, you can define several settings to produce different build results. For example, take a look at the `Multiple configuration tutorial <multiple_config>`_ which uses the ESP-IDF CMake build system `multi_config <https://github.com/espressif/esp-idf/tree/master/examples/build_system/cmake/multi_config>`_ example.
4
+
:link_to_translation:`zh_CN:[中文]`
5
+
6
+
Table of Contents
7
+
-----------------
8
+
9
+
.. contents::
10
+
:depth: 2
11
+
:local:
12
+
13
+
The extension have multiple settings to configure the ESP-IDF project (see the table below). To allow you to have multiple configurations settings for the same project, you can use the **Project Configuration Editor** to define multiple profiles with different settings for each profile.
14
+
15
+
Configuring the extension for **one** build configuration
A typical `ESP-IDF Project Structure <https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/build-system.html#example-project>`_ is like this:
19
+
20
+
.. code-block::
21
+
22
+
- /path/to/esp-project/
23
+
- CMakeLists.txt
24
+
- sdkconfig
25
+
- components/ - component1/ - CMakeLists.txt
26
+
- Kconfig
27
+
- src1.c
28
+
- component2/ - CMakeLists.txt
29
+
- Kconfig
30
+
- src1.c
31
+
- include/ - component2.h
32
+
- main/ - CMakeLists.txt
33
+
- src1.c
34
+
- src2.c
35
+
36
+
- build/
37
+
38
+
In the ESP-IDF CMake build system, the project configuration settings are saved using the SDK Configuration Editor which store these values in a ``/path/to/esp-project/sdkconfig`` file. The default case is to create an ``/path/to/esp-project/sdkconfig`` file in the ESP-IDF project root directory and a ``/path/to/esp-project/build`` directory as the build directory path.
39
+
40
+
When the current ESP-IDF project is under version control system, the ``/path/to/esp-project/sdkconfig`` can change on any user build which can alter the project expected behavior. For such a reason is better to move those project specific settings to an ``sdkconfig.defaults`` file (or list of files) which is not modified by the build system. ``/path/to/esp-project/sdkconfig`` can be added to the ``.gitignore`` list. This ``sdkconfig.defaults`` can be generated by the ``ESP-IDF: Save Default SDKCONFIG file (save-defconfig)`` (ESP-IDF v5.0 or higher) command.
41
+
42
+
.. note::
43
+
The ``sdkconfig.defaults`` file is used by the build system to override defaults project settings when creating the ``sdkconfig`` file as described in the ESP-IDF documentation `custom sdkconfig defaults <https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/build-system.html#custom-sdkconfig-defaults>`_.
44
+
45
+
With this extension settings, the default build path (``/path/to/esp-project/build``), sdkconfig file path and sdkconfig.defaults can be modified from their default location, the one described in the project structure before.
46
+
47
+
In this extension you can define the build directory with the ``idf.buildPath`` (``idf.buildPathWin`` fo Windows) configuration setting and the list of sdkconfig default files with ``idf.sdkconfigDefaults`` configuration. The value of these settings will be using by the extension build command.
48
+
49
+
Say you want to make product 1:
50
+
51
+
1. you have sdkconfig files ``sdkconfig.prod_common`` and ``sdkconfig.prod1`` and you want the resulting firmware to be generated in ``<your-project>/build_prod1`` where ``build_prod1`` is the name of the custom build folder.
52
+
2. Add these settings in ``<your-project>/.vscode/settings.json``:
3. Build your project using the ``ESP-IDF: Build your Project`` command.
65
+
66
+
4. Your resulting files will be generated in ``<your-project>/build_prod1`` and the sdkconfig being used by the SDK Configuration Editor will be ``<your-project>/build_prod1/sdkconfig``.
67
+
68
+
.. note::
69
+
The ESP-IDF CMake Multiple configuration example defines the sdkconfig location in the CMakeLists.txt file and it will make ``idf.sdkconfigFilePath`` **NOT** work.
70
+
71
+
5. Change values in (2) for different products and configurations.
72
+
73
+
With the ``ESP-IDF: Project Configuration Editor`` you can define multiple locations of the build directory with ``Build Directory Path``, ``SDKConfig File Path`` for the SDKConfig file and ``SDKConfig Defaults`` list of SDKConfig files to create the SDKConfig file in the specified ``SDKConfig File Path`` path.
74
+
75
+
Configuring the extension for multiple build configurations
2. Type **ESP-IDF: Open Project Configuration** and select the command.
79
+
2. Type ``ESP-IDF: Open Project Configuration`` and select the command.
8
80
3. This will launch a Project configuration wizard to manage the project configuration profiles to record the following settings for each configuration:
@@ -44,41 +116,48 @@ To allow you to have multiple configurations for the same project, you can defin
44
116
4. After defining a profile and the settings for each profile use:
45
117
46
118
- Click menu **View** > **Command Palette...**
47
-
- Type **ESP-IDF: Select Project Configuration** command to choose the configuration to override extension configuration settings.
119
+
- Type ``ESP-IDF: Select Project Configuration`` command to choose the configuration to override extension configuration settings.
48
120
49
-
There are many use cases for having multiple configurations profiles. It allows you to store settings together and easily switch between one and the other. Let's explore one of this use cases here, having a development and production build profiles.
121
+
There are many use cases for having multiple configurations profiles. It allows you to store settings together and easily switch between one and the other.
50
122
51
-
Development and Release Profiles for ESP-IDF Project
A typical `ESP-IDF Project Structure <https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/build-system.html#example-project>`_ is like this:
126
+
Use the `ESP-IDF CMake Multiple configuration example <https://github.com/espressif/esp-idf/tree/master/examples/build_system/cmake/multi_config>`_ to follow this tutorial.
55
127
56
-
.. code-block::
128
+
Use the **ESP-IDF: Open Project Configuration** and create two configurations profiles: ``prod1`` and ``prod2`` and ``sdkconfig.prod_common;sdkconfig.prod1`` and ``sdkconfig.prod_common;sdkconfig.prod2`` on the sdkconfig defaults field as shown below:
In each profile, on the sdkconfig defaults field, type ``sdkconfig.prod_common`` and press ``+`` to add another sdkconfig file. Type ``sdkconfig.prod1`` for the ``prod1`` profile and ``sdkconfig.prod2`` for the ``prod2`` profile.
73
134
74
-
In the ESP-IDF CMake build system, the project configuration settings are saved using the SDK Configuration Editor which store these values in a ``/path/to/esp-project/sdkconfig`` file. The default case is to create an ``/path/to/esp-project/sdkconfig`` file in the ESP-IDF project root directory and a ``/path/to/esp-project/build`` directory as the build directory path.
When the current ESP-IDF project is under version control system, the ``/path/to/esp-project/sdkconfig`` can change on any user build which can alter the project expected behavior. For such a reason is better to move those project specific settings to an ``sdkconfig.defaults`` file (or list of files) which is not modified by the build system. ``/path/to/esp-project/sdkconfig`` can be added to the ``.gitignore`` list. This ``sdkconfig.defaults`` can be generated by the **ESP-IDF: Save Default SDKCONFIG file (save-defconfig)** (ESP-IDF v5.0 or higher) command.
The ``sdkconfig.defaults`` file is used by the build system to override defaults project settings when creating the ``sdkconfig`` file as described in the ESP-IDF documentation `custom sdkconfig defaults <https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/build-system.html#custom-sdkconfig-defaults>`_.
80
141
81
-
With this extension settings, the default build path (/path/to/esp-project/build), sdkconfig file path and sdkconfig.defaults can be modified from their default location, the one described in the project structure before. With the **ESP-IDF: Project Configuration Editor** you can define multiple locations of the build directory with ``Build Directory Path``, ``SDKConfig File Path`` for the SDKConfig file and ``SDKConfig Defaults`` list of SDKConfig files to create the SDKConfig file in the specified ``SDKConfig File Path`` path.
142
+
After creating each profile and the configuration settings for each profile, click the ``Save`` button located at the top and use the **ESP-IDF: Select Project Configuration** command to choose the configuration to override extension configuration settings.
Now use the **ESP-IDF: Build your Project** to build the project for the selected profile (either ``prod1`` or ``prod2``). You can observe binaries generated for each profiles in the path defined in each profile as before. You can use **ESP-IDF: Select Project Configuration** command to switch between configurations.
154
+
155
+
Use the **ESP-IDF: Open Project Configuration** command to modify, add or delete the configuration profiles. If you want to stop using these profiles, just delete all configuration profiles.
156
+
157
+
These profiles and each profile settings are going to be saved in the ``/path/to/esp-project/esp_idf_project_configuration.json``.
158
+
159
+
Development and Release Profiles for ESP-IDF Project
For this example we will create two profiles, **development** and **production**, to create 2 different build directories and 2 different sdkconfig files.
84
163
@@ -89,14 +168,17 @@ For this example we will create two profiles, **development** and **production**
89
168
90
169
5. Create a new profile with name ``development``. You can set the build directory path using the ``Build Directory Path`` field to something like ``/path/to/esp-project/build_dev`` and the ``SDKConfig File Path`` field to something like ``/path/to/esp-project/build_dev/sdkconfig`` to avoid mixing **development** with **production** files.
91
170
92
-
6. After creating each profile and the configuration settings for each profile, click the ``Save`` button and use the extension **ESP-IDF: Select Project Configuration** command to choose desired profile.
171
+
6. After creating each profile and the configuration settings for each profile, click the ``Save`` button and use the extension ``ESP-IDF: Select Project Configuration`` command to choose desired profile.
93
172
94
-
7. When you choose the **production** profile and use the **ESP-IDF: Build your Project** the ``/path/to/esp-project/build_production/sdkconfig`` would be created and the binaries are going to be created in ``/path/to/esp-project/build_production``.
173
+
7. When you choose the **production** profile and use the ``ESP-IDF: Build your Project`` the ``/path/to/esp-project/build_production/sdkconfig`` would be created and the binaries are going to be created in ``/path/to/esp-project/build_production``.
95
174
96
175
8. If you choose the **development** profile, the ``/path/to/esp-project/build_dev/sdkconfig`` would be created and the binaries are going to be created in ``/path/to/esp-project/build_dev``.
97
176
98
177
9. These profiles and each profile settings are going to be saved in the ``/path/to/esp-project/esp_idf_project_configuration.json``.
99
178
100
-
The previous production profile could be split into multiple production profiles, as it is done in the `ESP-IDF CMake Multiple configuration example <https://github.com/espressif/esp-idf/tree/master/examples/build_system/cmake/multi_config>`_ and the `Multiple configuration tutorial <multiple_config>`_ by separating ``sdkconfig.defaults`` into common SDKConfig settings in a ``sdkconfig.prod_common`` file and product specific settings in ``sdkconfig.prod1`` file and ``sdkconfig.prod2`` file respectively. Multiple SDKConfig defaults files can be specified in the project configuration editor profile ``sdkconfig defaults`` field as ``sdkconfig.prod_common;sdkconfig.prod1`` where the values are loaded in order as explained in `here <https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/build-system.html?highlight=sdkconfig%20defaults#custom-sdkconfig-defaults>`_.
179
+
The previous production profile could be split into multiple production profiles, as it is done in the :ref:`Multiple configuration tutorial <Multiple configuration tutorial>` by separating ``sdkconfig.defaults`` into common SDKConfig settings in a ``sdkconfig.prod_common`` file and product specific settings in ``sdkconfig.prod1`` file and ``sdkconfig.prod2`` file respectively. Multiple SDKConfig defaults files can be specified in the project configuration editor profile ``sdkconfig defaults`` field as ``sdkconfig.prod_common;sdkconfig.prod1`` where the values are loaded in order as explained in `here <https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/build-system.html?highlight=sdkconfig%20defaults#custom-sdkconfig-defaults>`_.
180
+
181
+
You can define multiple settings for different kinds of development scenarios such as testing, profiling, etc.
182
+
183
+
101
184
102
-
This is just an example of the possibility of this project configuration editor. You can define multiple settings for different kinds of development scenarios such as testing, profiling, etc.
0 commit comments