-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtasks.json
129 lines (129 loc) · 3.19 KB
/
tasks.json
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Build all",
"options": {
"cwd": "${workspaceFolder}"
},
"command": [
"make"
],
"args": [
"-e",
"PLATFORMS='prologue minilogue-xd nutekt-digital'"
],
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "shell",
"label": "Build prologue units",
"options": {
"cwd": "${workspaceFolder}"
},
"command": [
"make"
],
"args": [
"-e",
"PLATFORMS=prologue"
],
"problemMatcher": [
"$gcc"
],
"group": "build"
},
{
"type": "shell",
"label": "Build minilogue XD units",
"options": {
"cwd": "${workspaceFolder}"
},
"command": [
"make"
],
"args": [
"-e",
"PLATFORMS=minilogue-xd"
],
"problemMatcher": [
"$gcc"
],
"group": "build"
},
{
"type": "shell",
"label": "Build NTS-1 units",
"options": {
"cwd": "${workspaceFolder}"
},
"command": [
"make"
],
"args": [
"-e",
"PLATFORMS=nutekt-digital"
],
"problemMatcher": [
"$gcc"
],
"group": "build"
},
{
"type": "shell",
"label": "Clean all",
"options": {
"cwd": "${workspaceFolder}"
},
"command": [
"make"
],
"args": [
"clean"
],
"problemMatcher": [
"$gcc"
],
"group": "build"
},
{
"type": "shell",
"label": "Load unit",
"command": [
"bash"
],
"args": [
"${workspaceFolder}/.vscode/loadunit.sh",
"${file}"
]
},
{
"type": "shell",
"label": "Dump all units",
"command": [
"bash"
],
"args": [
"${workspaceFolder}/.vscode/dumpunits.sh"
],
"problemMatcher": []
},
{
"type": "shell",
"label": "Update SVD files",
"options": {
"cwd": "${workspaceFolder}"
},
"command": [
"(test -f STM32F446.svd && test -f STM32F401.svd) || (wget https://www.st.com/resource/en/svd/stm32f4_svd.zip && unzip -jo stm32f4_svd.zip '*/STM32F446.svd' '*/STM32F401.svd' && rm stm32f4_svd.zip)"
]
}
]
}