|
117 | 117 | "main": "./dist/extension",
|
118 | 118 | "l10n": "./l10n",
|
119 | 119 | "contributes": {
|
| 120 | + "walkthroughs": [ |
| 121 | + { |
| 122 | + "id": "espIdf.walkthrough.basic-usage", |
| 123 | + "title": "ESP-IDF Basic Usage Guide", |
| 124 | + "description": "Learn how to configure the ESP-IDF extension and use its basic features in VS Code", |
| 125 | + "steps": [ |
| 126 | + { |
| 127 | + "id": "introduction", |
| 128 | + "title": "Introduction to ESP-IDF in VS Code", |
| 129 | + "description": "This walkthrough will guide you through configuring the ESP-IDF extension and demonstrate its basic usage in Visual Studio Code.", |
| 130 | + "media": { |
| 131 | + "markdown": "walkthroughs/basic/basic-usage-intro.md" |
| 132 | + } |
| 133 | + }, |
| 134 | + { |
| 135 | + "id": "extension-configuration", |
| 136 | + "title": "Configuring the ESP-IDF Extension", |
| 137 | + "description": "❗**Linux and MacOS users:** Please install prerequisites first. The process is quick and simple - follow the steps in our [ESP-IDF install documentation](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/linux-macos-setup.html#step-1-install-prerequisites).\n\nOnce ready, let's configure the ESP-IDF extension:\n\n[Configure ESP-IDF Extension](command:espIdf.setup.start)\n\n", |
| 138 | + "media": { |
| 139 | + "markdown": "walkthroughs/basic/configuration.md" |
| 140 | + } |
| 141 | + }, |
| 142 | + { |
| 143 | + "id": "create-example-project", |
| 144 | + "title": "Creating an Example Project", |
| 145 | + "description": "Now, let's create a new project from ESP-IDF examples:\n\n[Show Example Projects](command:espIdf.examples.start)\n\n💡 Explore different examples to find one that suits your needs.", |
| 146 | + "media": { |
| 147 | + "markdown": "walkthroughs/basic/create-project.md" |
| 148 | + } |
| 149 | + }, |
| 150 | + { |
| 151 | + "id": "setup-project", |
| 152 | + "title": "Setting Up Your Project", |
| 153 | + "description": "Before building your project, you'll need to configure some essential settings:\n\n1. Configure your target device\n\n[Set Espressif Device Target](command:espIdf.setTarget)\n2. Set up project-specific configurations (not needed in our example)\n3. Select serial port \n\n[Select Port to Use](command:espIdf.selectPort)\n4. Select flashing method \n\n[Select Flash Method](command:espIdf.selectFlashMethodAndFlash)", |
| 154 | + "media": { |
| 155 | + "markdown": "walkthroughs/basic/setup-project.md" |
| 156 | + } |
| 157 | + }, |
| 158 | + { |
| 159 | + "id": "build-flash-monitor", |
| 160 | + "title": "Building, Flashing, and Monitoring", |
| 161 | + "description": "Now that your project is configured, let's build the code, flash it to your device, and monitor the output.\n\nYou can perform these operations individually or all at once using the 'Build, Flash and Monitor' command.\n\n[Build, Flash and Monitor](command:espIdf.buildFlashMonitor)", |
| 162 | + "media": { |
| 163 | + "markdown": "walkthroughs/basic/build-flash-monitor.md" |
| 164 | + } |
| 165 | + }, |
| 166 | + { |
| 167 | + "id": "additional-resources-and-ui", |
| 168 | + "title": "Additional Resources and UI Exploration", |
| 169 | + "description": "As a next step, we recommend that you go through the Advanced Walkthrough as well.\n\n[Start Advanced Features Guide Walkthrough](command:workbench.action.openWalkthrough?%22espressif.esp-idf-extension%23espIdf.walkthrough.advanced%22)", |
| 170 | + "media": { |
| 171 | + "markdown": "walkthroughs/basic/additional-resources.md" |
| 172 | + } |
| 173 | + } |
| 174 | + ] |
| 175 | + }, |
| 176 | + { |
| 177 | + "id": "espIdf.walkthrough.advanced", |
| 178 | + "title": "ESP-IDF Advanced Features Guide", |
| 179 | + "description": "Explore advanced features and tools for ESP-IDF development in VS Code", |
| 180 | + "steps": [ |
| 181 | + { |
| 182 | + "id": "advanced-introduction", |
| 183 | + "title": "Introduction to Advanced Features", |
| 184 | + "description": "Overview of advanced ESP-IDF development capabilities.\n\n**Prerequisites:**\n - Completed the Basic Usage Guide\n - Basic familiarity with ESP-IDF concepts\n - Have a working ESP-IDF setup\n - Have your development board ready\n - JTAG debugging hardware (for debugging features)", |
| 185 | + "media": { |
| 186 | + "markdown": "walkthroughs/advanced/advanced-intro.md" |
| 187 | + } |
| 188 | + }, |
| 189 | + { |
| 190 | + "id": "troubleshooting", |
| 191 | + "title": "Troubleshooting Guide", |
| 192 | + "description": "Learn about common troubleshooting techniques and how to get help when you need it.\n\nKey features:\n- Debug logging configuration\n- Environment diagnostics\n- Log file locations\n- Common issues and solutions\n\n[Run Doctor Command](command:espIdf.doctorCommand)", |
| 193 | + "media": { |
| 194 | + "markdown": "walkthroughs/advanced/troubleshooting.md" |
| 195 | + } |
| 196 | + }, |
| 197 | + { |
| 198 | + "id": "sdk-configuration", |
| 199 | + "title": "SDK Configuration (menuconfig)", |
| 200 | + "description": "Learn how to customize your project's configuration using menuconfig\nKey features:\n- Component configuration\n- Compiler options\n- Flash and partition settings\n- Serial port parameters\n\n💡 Tip: Use search bar to quickly find settings", |
| 201 | + "media": { |
| 202 | + "markdown": "walkthroughs/advanced/sdk-configuration.md" |
| 203 | + } |
| 204 | + }, |
| 205 | + { |
| 206 | + "id": "debugging", |
| 207 | + "title": "Debugging Your Application", |
| 208 | + "description": "Learn how to debug your ESP-IDF applications using VS Code\n\nKey features:\n- Conditional breakpoints\n- Navigating through the code, call stack and threads\n- Halting the target manually\n- Watching and setting program variables\n- Disassembly view\n- Sending GDB Commands\n- Peripheral Viewer", |
| 209 | + "media": { |
| 210 | + "markdown": "walkthroughs/advanced/debug-project.md" |
| 211 | + } |
| 212 | + }, |
| 213 | + { |
| 214 | + "id": "component-installation", |
| 215 | + "title": "Installing ESP-IDF Components", |
| 216 | + "description": "Learn how to enhance your project with ESP Component Registry and Arduino-ESP32 integration.\n\n- Browse and install ESP components\n- Add Arduino-ESP32 as a component\n- Create projects from component examples\n\n[Open ESP Component Registry](command:esp.component-manager.ui.show)", |
| 217 | + "media": { |
| 218 | + "markdown": "walkthroughs/advanced/component-installation.md" |
| 219 | + } |
| 220 | + }, |
| 221 | + { |
| 222 | + "id": "app-size-analysis", |
| 223 | + "title": "Application Size Analysis", |
| 224 | + "description": "ESP-IDF Extension provides powerful tools to analyze your application's memory usage, helping you optimize storage allocation. \n\n[Open Size Analysis](command:espIdf.size)", |
| 225 | + "media": { |
| 226 | + "markdown": "walkthroughs/advanced/app-size-analysis.md" |
| 227 | + } |
| 228 | + }, |
| 229 | + { |
| 230 | + "id": "partition-table", |
| 231 | + "title": "Partition Table Configuration", |
| 232 | + "description": "The Partition Table Editor provides a user-friendly interface to define and modify your ESP32's flash memory layout.\nKey features\n- Visual partition table editing interface\n- Automatic CSV file generation and management\n- Direct integration with ESP-IDF build systemReal-time validation of partition configurations\n\n[Open Partition Editor](command:esp.webview.open.partition-table)", |
| 233 | + "media": { |
| 234 | + "markdown": "walkthroughs/advanced/partition-table.md" |
| 235 | + } |
| 236 | + }, |
| 237 | + { |
| 238 | + "id": "unit-testing", |
| 239 | + "title": "Unit Testing", |
| 240 | + "description": "Set up and run unit tests for your ESP-IDF projects.\n\n- Configure test environment\n- Write and run tests\n- Analyze test results\n\n[Open Testing View](command:testing.viewExplorer)", |
| 241 | + "media": { |
| 242 | + "markdown": "walkthroughs/advanced/unit-testing.md" |
| 243 | + } |
| 244 | + }, |
| 245 | + { |
| 246 | + "id": "multi-project", |
| 247 | + "title": "Multi-Project Management", |
| 248 | + "description": "Learn to efficiently manage multiple ESP-IDF projects in a single workspace.", |
| 249 | + "media": { |
| 250 | + "markdown": "walkthroughs/advanced/multi-project.md" |
| 251 | + } |
| 252 | + }, |
| 253 | + { |
| 254 | + "id": "conclusion", |
| 255 | + "title": "Next Steps", |
| 256 | + "description": "Congratulations! You've learned about essential advanced features of ESP-IDF development.\n\nNext steps:\n- Explore additional tools in ESP-IDF documentation\n- Join the ESP32 community forum\n- Check out example projects\n\n[Visit Our Documentation](https://docs.espressif.com/projects/vscode-esp-idf-extension/en/latest/additionalfeatures.html)", |
| 257 | + "media": { |
| 258 | + "markdown": "walkthroughs/advanced/advanced-conclusion.md" |
| 259 | + } |
| 260 | + } |
| 261 | + ] |
| 262 | + } |
| 263 | + ], |
120 | 264 | "problemMatchers": [
|
121 | 265 | {
|
122 | 266 | "name": "espIdf",
|
|
232 | 376 | }
|
233 | 377 | ],
|
234 | 378 | "menus": {
|
| 379 | + "extension/context": [ |
| 380 | + { |
| 381 | + "command": "espIdf.openWalkthrough", |
| 382 | + "when": "extension =~ /^espressif.esp-idf-extension$/ && extensionStatus == installed", |
| 383 | + "group": "zzz" |
| 384 | + } |
| 385 | + ], |
235 | 386 | "editor/title": [
|
236 | 387 | {
|
237 | 388 | "command": "espIdf.searchError",
|
|
611 | 762 | "scope": "window",
|
612 | 763 | "description": "%param.showOnboardingOnInit%"
|
613 | 764 | },
|
| 765 | + "idf.hasWalkthroughBeenShown": { |
| 766 | + "type": "boolean", |
| 767 | + "default": false, |
| 768 | + "scope": "application", |
| 769 | + "description": "%param.hasWalkthroughBeenShown%" |
| 770 | + }, |
614 | 771 | "trace.poll_period": {
|
615 | 772 | "type": "number",
|
616 | 773 | "default": 1,
|
|
1033 | 1190 | }
|
1034 | 1191 | ],
|
1035 | 1192 | "commands": [
|
| 1193 | + { |
| 1194 | + "command": "espIdf.openWalkthrough", |
| 1195 | + "title": "ESP-IDF: Open Get Started Walkthrough" |
| 1196 | + }, |
1036 | 1197 | {
|
1037 | 1198 | "command": "espIdf.searchError",
|
1038 | 1199 | "title": "%espIdf.searchError.title%"
|
|
0 commit comments