-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathamtest.code-workspace
More file actions
98 lines (89 loc) · 2.19 KB
/
Copy pathamtest.code-workspace
File metadata and controls
98 lines (89 loc) · 2.19 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"folders": [
{
"path": "."
}
],
"launch": {
"configurations": [
// ### gui #########################
// {
// "name" : "start gui",
// "type": "python",
// "request": "launch",
// "program": "amtest/boards/ulx3s/gui_ui/gui_software/source/main.py",
// "console": "integratedTerminal"
// },
{
"name" : "start gui",
"type": "python",
"request": "launch",
"args": ["gui", "start-gui"],
"program": "./build.py",
"console": "integratedTerminal"
},
// ### fpga #########################
{
"name" : "fpga upload-uart-passthrough-binary",
"type": "python",
"request": "launch",
"program": "./build.py",
"args": ["fpga", "upload-uart-passthrough-binary"],
"console": "integratedTerminal"
},
{
"name" : "fpga simulate current file",
"type": "python",
"request": "launch",
"program": "./build.py",
"args": ["fpga", "simulate-current-file", "--file", "${file}"],
"console": "integratedTerminal"
},
{
"name" : "fpga generate current file",
"type": "python",
"request": "launch",
"program": "./build.py",
"args": ["fpga", "generate-current-file", "--file", "${file}"],
"console": "integratedTerminal"
},
{
"name" : "fpga upload current file",
"type": "python",
"request": "launch",
"program": "./build.py",
"args": ["fpga", "upload-current-file", "--file", "${file}"],
"console": "integratedTerminal"
},
// ### mcu #########################
{
"name" : "mcu reflash-binary",
"type": "python",
"request": "launch",
"program": "./build.py",
"args": ["mcu", "reflash-binary"],
"console": "integratedTerminal"
},
{
"name" : "mcu update-firmware",
"type": "python",
"request": "launch",
"program": "./build.py",
"args": ["mcu", "update-firmware"],
"console": "integratedTerminal"
},
{
"name" : "mcu enter-repl",
"type": "python",
"request": "launch",
"program": "./build.py",
"args": ["mcu", "enter-repl"],
"console": "integratedTerminal"
},
],
"compounds": []
},
"settings": {
"python.pythonPath": "/home/x/Documents/venv_ge/bin/python3.9"
},
}