generated from silvio-vallorani-zephyr-portfolio/zephyr_devcontainer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace.code-workspace
37 lines (37 loc) · 1.08 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
{
"folders": [
{
"name": "workspace",
"path": "/workspace"
},
{
"name": "deps",
"path": "/workspace/deps"
},
{
"name": "toolchains",
"path": "/opt/toolchains"
}
],
"settings": {
"C_Cpp.default.compilerPath": "/opt/toolchains/zephyr-sdk-0.16.8/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc",
"C_Cpp.default.intelliSenseMode": "gcc-arm",
"C_Cpp.default.compileCommands": "/workspace/app/build-slot0/compile_commands.json",
"cmake.configureOnOpen": false,
"cmake.buildDirectory": "/workspace/app/build-slot0",
"cmake.showOptionsMovedNotification": false,
"workbench.activityBar.location": "top",
"workbench.startupEditor": "none",
"editor.tabSize": 4,
"editor.detectIndentation": false,
"editor.inlineSuggest.suppressSuggestions": true,
"files.associations": {
"*.h": "c",
},
"workbench.colorCustomizations": {
"editorError.foreground": "#ff000088",
"editorWarning.foreground": "#ffe60033",
"editorInfo.foreground": "#00ff0088"
}
}
}