Skip to content

Commit

Permalink
fix: added more debuggin in launch.json.
Browse files Browse the repository at this point in the history
fix: error in debuggin because it did not delete old .stm32env files.
fix: change in getting node also meant change in tests
fix: got all the tests passing again.
  • Loading branch information
jortbmd committed Dec 24, 2024
1 parent 2d33499 commit 88a23f8
Show file tree
Hide file tree
Showing 17 changed files with 1,081 additions and 708 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ STM32-for-VSCode.config.yaml
stats.json
webpack-stats.json
.stm32env
.vscode/settings.json
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,22 @@
],
"preLaunchTask": "compile tests"
},
{
"name": "Extension Tests CubeIDE importer",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"${workspaceFolder}/src/test/workspaces/CubeIdeExample/Projects/NUCLEO-G071RB/Applications/FreeRTOS/FreeRTOS_Mail",
"--extensions-dir .vscode-test/extensions",
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/integration/importAndBuild"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "compile tests"
},
{
"name": "Extension Tests tool integration",
"type": "extensionHost",
Expand Down
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@

"editor.rulers": [120], // 120 chars is the default eslint max length.
},
"cortex-debug.openocdPath": "C:\\USERS\\JORT_\\APPDATA\\ROAMING\\CODE - INSIDERS\\USER\\GLOBALSTORAGE\\BMD.STM32-FOR-VSCODE\\@XPACK-DEV-TOOLS\\OPENOCD\\0.12.0-4.1\\.CONTENT\\BIN\\OPENOCD.EXE",
}
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- Full support for CubeIDE imports.
- Add option to select installation location for the tooling.

## [3.2.9] - 2024-09-27
## [3.2.9] - 2024-12-24
### Added
- Issue #206: Did not build anything else than elf files due to the all recipe not being correct.
- Issue #212: On Windows threw an error because the build folder was already there. Now checks before using the md command. Thanks to: qwertym88
Expand Down
Loading

0 comments on commit 88a23f8

Please sign in to comment.