File tree Expand file tree Collapse file tree 3 files changed +40
-6
lines changed Expand file tree Collapse file tree 3 files changed +40
-6
lines changed Original file line number Diff line number Diff line change 2
2
"version" : " 0.2.0" ,
3
3
"configurations" : [
4
4
{
5
+ "name" : " Extension" ,
6
+ "type" : " extensionHost" ,
7
+ "request" : " launch" ,
8
+ "args" : [
9
+ " --extensionDevelopmentPath=${workspaceFolder}" ,
10
+ " ${workspaceFolder}/sample-workspace"
11
+ ],
12
+ "outFiles" : [
13
+ " ${workspaceFolder}/lib/**/*.js"
14
+ ]
15
+ },
16
+ {
17
+ "name" : " Server" ,
5
18
"type" : " node" ,
6
19
"request" : " launch" ,
7
- "name" : " Debug Server" ,
8
20
"runtimeArgs" : [ " --nolazy" ],
9
21
"program" : " ${workspaceRoot}/src/index.ts" ,
10
22
"stopOnEntry" : false ,
11
23
"args" : [ " --server=4711" ],
12
24
"sourceMaps" : true ,
13
25
"outFiles" : [
14
- " ${workspaceRoot }/lib/**/*.js"
26
+ " ${workspaceFolder }/lib/**/*.js"
15
27
],
16
- "cwd" : " ${workspaceRoot }"
28
+ "cwd" : " ${workspaceFolder }"
17
29
}
18
- ]
30
+ ],
31
+ "compounds" : [
32
+ {
33
+ "name" : " Extension + Server" ,
34
+ "configurations" : [ " Extension" , " Server" ]
35
+ }
36
+ ]
19
37
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " cmsis-debug-adapter" ,
3
3
"version" : " 1.0.0" ,
4
+ "publisher" : " Arm Mbed" ,
4
5
"description" : " Debug adapter for CMSIS following the DAP protocol" ,
5
6
"author" : " Rob Moran <rob.moran@arm.com>" ,
6
7
"license" : " MIT" ,
7
8
"private" : true ,
8
- "main" : " ./lib/index" ,
9
+ "main" : " ./lib/index.js " ,
9
10
"repository" : {
10
11
"type" : " git" ,
11
12
"url" : " git://github.com/ARMmbed/cmsis-debug-adapter"
12
13
},
13
14
"engines" : {
15
+ "vscode" : " ^1.49.0" ,
14
16
"node" : " >=10.2.1"
15
17
},
16
18
"scripts" : {
33
35
"bundledDependencies" : [
34
36
" cdt-gdb-adapter"
35
37
],
36
- "publisher" : " Arm Mbed" ,
37
38
"activationEvents" : [
38
39
" onDebugResolve:cmsis-debug"
39
40
],
Original file line number Diff line number Diff line change
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version" : " 0.2.0" ,
6
+ "configurations" : [
7
+ {
8
+ "name" : " CMSIS Debug" ,
9
+ "type" : " cmsis-debug" ,
10
+ "request" : " launch" ,
11
+ "gdbServer" : " pyocd" ,
12
+ // "debugServer": 4711
13
+ }
14
+ ]
15
+ }
You can’t perform that action at this time.
0 commit comments