We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 789af69 commit 500232bCopy full SHA for 500232b
.gitignore
@@ -3,3 +3,4 @@ bootloader/
3
modules/
4
tools/
5
zephyr/
6
+build/
.vscode/tasks.json
@@ -6,7 +6,7 @@
{
7
"label": "Build",
8
"type": "shell",
9
- "command": "west build",
+ "command": "cd app && west build",
10
"group": {
11
"kind": "build",
12
"isDefault": true
@@ -15,13 +15,13 @@
15
16
"label": "Flash",
17
18
- "command": "west flash",
+ "command": "cd app && west flash",
19
"group": "test"
20
},
21
22
"label": "Debug",
23
24
- "command": "west debug",
+ "command": "cd app && west debug",
25
26
}
27
]
0 commit comments