-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathzephyr-trinamic.code-workspace
More file actions
39 lines (34 loc) · 995 Bytes
/
zephyr-trinamic.code-workspace
File metadata and controls
39 lines (34 loc) · 995 Bytes
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"cortex-debug.JLinkGDBServerPath.linux": "/opt/SEGGER/JLink/JLinkGDBServerCLExe",
"cortex-debug.armToolchainPath": "/usr/bin",
"cortex-debug.armToolchainPrefix": "arm-none-eabi",
"cortex-debug.gdbPath": "gdb-multiarch",
// You're going to use tabs, Mr. Anderson. Whether you want to or not.
"editor.insertSpaces": false,
"editor.tabSize": 4,
"editor.rulers": [
80,
100
],
"search.showLineNumbers": true,
"explorer.confirmDelete": false,
"debug.onTaskErrors": "abort",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"diffEditor.ignoreTrimWhitespace": false,
"rewrap.autoWrap.enabled": true,
// Increase scrollback for integrated terminal so that we can see all
// the output of our scripts
// https://github.com/Microsoft/vscode/issues/63452
"terminal.integrated.scrollback": 99999,
"C_Cpp.errorSquiggles": "Enabled",
"C_Cpp.default.includePath": [
],
},
}