Skip to content

Commit 5bb08c4

Browse files
add project wizard doc fix openocd configs (#651)
* add project wizard doc fix openocd configs * add openOcd config links * update extension template project * update confirm image * fix template app project name
1 parent 6b61682 commit 5bb08c4

13 files changed

+77
-46
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ Click <kbd>F1</kbd> to show Visual studio code actions, then type **ESP-IDF** to
111111
| Doctor command | | |
112112
| Erase flash memory from device | <kbd>⌘</kbd> <kbd>I</kbd> <kbd>R</kbd> | <kbd>Ctrl</kbd> <kbd>E</kbd> <kbd>R</kbd> |
113113
| Execute custom task | <kbd>⌘</kbd> <kbd>I</kbd> <kbd>J</kbd> | <kbd>Ctrl</kbd> <kbd>E</kbd> <kbd>J</kbd> |
114+
| Flash (DFU) your project | | |
114115
| Flash (UART) your project | | |
115116
| Flash (with JTag) | | |
116117
| Full clean project | <kbd>⌘</kbd> <kbd>I</kbd> <kbd>X</kbd> | <kbd>Ctrl</kbd> <kbd>E</kbd> <kbd>X</kbd> |

docs/ONBOARDING.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
10. [ESP-ADF, ESP-MDF and other frameworks](./tutorial/additional_frameworks.md)
1717
11. [eFuse Explorer](./tutorial/efuse.md)
1818
12. [Rainmaker](./tutorial/rainmaker.md)
19+
13. [New project wizard](./new_project_wizard.md)
1920

2021
## Documentation
2122

docs/tutorial/new_project_wizard.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# New project wizard
2+
3+
This feature allows you to create a new project using the ESP-IDF, ESP-ADF and ESP-MDF frameworks and configure the extension settings and the project name.
4+
5+
1. Click menu View -> Command Palette... and search for the **ESP-IDF: New Project**.
6+
7+
<p>
8+
<img src="../../media/tutorials/new_project/new_project_init.png" alt="New project wizard" height="500">
9+
</p>
10+
11+
2. Choose the project name, the directory to create this new project, the Espressif board you are using (or any general Espressif device) and the serial port of the device. You could also choose to import any component directory `component-dir` to the new project which will be copied to the new project's directory `components` sub directory (`<project-dir>/components/component-dir`).
12+
13+
> **NOTE:** If using the custom board option, please take a look at [Configuring of OpenOCD for specific target](https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/jtag-debugging/tips-and-quirks.html#configuration-of-openocd-for-specific-target) for more information about these openOCD configuration files and the [debugging tutorial](./debugging.md) for values examples.
14+
15+
3. After that click the `Choose Template` button and choose a template from Extension templates and, if configured; ESP-IDF, ESP-ADF and ESP-MDF frameworks. If you want to create a blank project, choose ESP-IDF `sample_project` or the extension `template-app`.
16+
17+
<p>
18+
<img src="../../media/tutorials/new_project/new_project_templates.png" alt="New project templates" height="500">
19+
</p>
20+
21+
4. Choose your desired template and click the `Create project using template <template-name>` button where `<template-name>` is the name of the selected template.
22+
23+
5. After the project is created, a notification window will show up to open the newly created project or not.
24+
25+
<p>
26+
<img src="../../media/tutorials/new_project/new_project_confirm.png" alt="New project templates" height="100">
27+
</p>

docs/tutorial/toc.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414
10. [ESP-ADF, ESP-MDF and other frameworks](./additional_frameworks.md)
1515
11. [eFuse Explorer](./efuse.md)
1616
12. [Rainmaker](./rainmaker.md)
17+
13. [New project wizard](./new_project_wizard.md)
Loading
Loading
Loading

src/newProject/newProjectPanel.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ export class NewProjectPanel {
167167
) {
168168
const defConfigFiles =
169169
newProjectArgs.boards && newProjectArgs.boards.length > 0
170-
? newProjectArgs.boards[0].configFiles
171-
: newProjectArgs.targetList[0].configFiles;
170+
? newProjectArgs.boards[0].configFiles.join(",")
171+
: newProjectArgs.targetList[0].configFiles.join(",");
172172
this.panel.webview.postMessage({
173173
boards: newProjectArgs.boards,
174174
command: "initialLoad",

src/newProject/utils.ts

+7-4
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
* Project: ESP-IDF VSCode Extension
33
* File Created: Tuesday, 27th July 2021 4:35:42 pm
44
* Copyright 2021 Espressif Systems (Shanghai) CO LTD
5-
*
5+
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
9-
*
9+
*
1010
* http://www.apache.org/licenses/LICENSE-2.0
11-
*
11+
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,
1414
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -52,7 +52,10 @@ export async function setCurrentSettingsInTemplate(
5252
if (mdfPathDir) {
5353
settingsJson["idf.espMdfPath" + isWin] = mdfPathDir;
5454
}
55-
settingsJson["idf.openOcdConfigs"] = openOcdConfigs.split(",");
55+
settingsJson["idf.openOcdConfigs"] =
56+
openOcdConfigs.indexOf(",") !== -1
57+
? openOcdConfigs.split(",")
58+
: [openOcdConfigs];
5659
if (port.indexOf("no port") === -1) {
5760
settingsJson["idf.port" + isWin] = port;
5861
}

templates/template-app/CMakeLists.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# The following lines of boilerplate have to be in your project's
1+
# For more information about build system see
2+
# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html
3+
# The following five lines of boilerplate have to be in your project's
24
# CMakeLists in this exact order for cmake to work correctly
35
cmake_minimum_required(VERSION 3.5)
46

templates/template-app/README.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# _Sample project_
2+
3+
(See the README.md file in the upper level 'examples' directory for more information about examples.)
4+
5+
This is the simplest buildable example. The example is used by command `idf.py create-project`
6+
that copies the project to user specified path and set it's name. For more information follow the [docs page](https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html#start-a-new-project)
7+
8+
9+
10+
## How to use example
11+
We encourage the users to use the example as a template for the new projects.
12+
A recommended way is to follow the instructions on a [docs page](https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html#start-a-new-project).
13+
14+
## Example folder contents
15+
16+
The project **sample_project** contains one source file in C language [main.c](main/main.c). The file is located in folder [main](main).
17+
18+
ESP-IDF projects are built using CMake. The project build configuration is contained in `CMakeLists.txt`
19+
files that provide set of directives and instructions describing the project's source files and targets
20+
(executable, library, or both).
21+
22+
Below is short explanation of remaining files in the project folder.
23+
24+
```
25+
├── CMakeLists.txt
26+
├── main
27+
│   ├── CMakeLists.txt
28+
│   └── main.c
29+
└── README.md This is the file you are currently reading
30+
```
31+
Additionally, the sample project contains Makefile and component.mk files, used for the legacy Make based build system.
32+
They are not used or needed when building with CMake and idf.py.
+2-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
idf_component_register(
2-
SRCS "main.c"
3-
INCLUDE_DIRS ""
4-
)
1+
idf_component_register(SRCS "main.c"
2+
INCLUDE_DIRS ".")

templates/template-app/main/main.c

+1-35
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,6 @@
1-
/* Hello World Example
2-
3-
This example code is in the Public Domain (or CC0 licensed, at your option.)
4-
5-
Unless required by applicable law or agreed to in writing, this
6-
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
7-
CONDITIONS OF ANY KIND, either express or implied.
8-
*/
91
#include <stdio.h>
10-
#include "freertos/FreeRTOS.h"
11-
#include "freertos/task.h"
12-
#include "esp_system.h"
13-
#include "esp_spi_flash.h"
14-
152

163
void app_main(void)
174
{
18-
printf("Hello world!\n");
19-
20-
/* Print chip information */
21-
esp_chip_info_t chip_info;
22-
esp_chip_info(&chip_info);
23-
printf("This is ESP32 chip with %d CPU cores, WiFi%s%s, ",
24-
chip_info.cores,
25-
(chip_info.features & CHIP_FEATURE_BT) ? "/BT" : "",
26-
(chip_info.features & CHIP_FEATURE_BLE) ? "/BLE" : "");
27-
28-
printf("silicon revision %d, ", chip_info.revision);
29-
30-
printf("%dMB %s flash\n", spi_flash_get_chip_size() / (1024 * 1024),
31-
(chip_info.features & CHIP_FEATURE_EMB_FLASH) ? "embedded" : "external");
325

33-
for (int i = 10; i >= 0; i--) {
34-
printf("Restarting in %d seconds...\n", i);
35-
vTaskDelay(1000 / portTICK_PERIOD_MS);
36-
}
37-
printf("Restarting now.\n");
38-
fflush(stdout);
39-
esp_restart();
40-
}
6+
}

0 commit comments

Comments
 (0)