-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace.code-workspace
52 lines (52 loc) · 1.21 KB
/
workspace.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"folders": [
{
"name": "main",
"path": "."
},
{
"name": "sensor-lib",
"path": "../sensor-lib"
},
{
"path": "../../streams-tools"
}
],
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Launch gdb-cppdbg",
"type": "cppdbg",
"request": "launch",
"miDebuggerPath": "riscv32-esp-elf-gdb",
"miDebuggerArgs": "-x ${workspaceFolder:main}/gdbinit",
"MIMode": "gdb",
"program": "/home/christof/Develop/chrisgitiota/susee-streams-poc/target/riscv32imc-esp-espidf/debug/main-rust-esp-rs",
"launchCompleteCommand": "None",
"externalConsole": false,
"cwd": "${workspaceFolder:main}"
},
{
"name": "GDB Debug - attach no exec",
"type": "gdb",
"request": "attach",
"target": ":3333",
"remote": true,
"cwd": "${workspaceFolder:main}",
"gdbpath": "riscv32-esp-elf-gdb",
"valuesFormatting": "parseText",
},{
"name": "GDB Debug - attach",
"type": "gdb",
"request": "attach",
"executable": "../../target/riscv32imc-esp-espidf/release/main-rust-esp-rs",
"target": ":3333",
"remote": true,
"cwd": "${workspaceFolder}",
"gdbpath": "riscv32-esp-elf-gdb",
"valuesFormatting": "parseText",
}
]
}
}