08/09/2020
NanoVNA User Guide | NanoVNA User Guide
https://cho45.github.io/NanoVNA-manual/#7-
トレース状態
45/51
Visual Studio Code (VSCode) is a multi-platform code editor provided by Microsoft for free. On-chip debugging can be done by GUI
by introducing
I will omit the platform-dependent part, but in addition to the above, the following is required.
openocd
VSCode
Cortex-Debug
Cortex-Debug is searched from VSCode Extensions and installed.
tasks.json
First, de ne a "task" to make the entire NanoVNA on VSCode.
{
"tasks"
:
[
{
"type"
:
"shell"
,
"label"
:
"build"
,
"command"
:
"make"
,
"args"
:
[
],
"options"
:
{
"cwd"
:
"${workspaceRoot}"
}
}
],
"version"
:
"2.0.0"
}
Now you can do make as a task on VSCode.