EasyManua.ls Logo

Lyons NanoVNA - Page 45

Default Icon
51 pages
Print Icon
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
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
Cortex-Debug
Extension.
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,
dene
a
"task"
to
make
the
entire
N
anoV
N
A
on
VSCode.
{
"tasks": [
{
"type": "shell",
"label": "build",
"command": "make",
"args": [
],
"options": {
"cwd": "${workspaceRoot}"
}
}
],
"version": "2.0.0"
}
N
ow
you
can
do
make
as
a
task
on
VSCode.