-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.json
More file actions
executable file
·71 lines (59 loc) · 2.54 KB
/
settings.json
File metadata and controls
executable file
·71 lines (59 loc) · 2.54 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
{
// ===========================================
// Python Env config
// ===========================================
"python.defaultInterpreterPath": "${env:HOME}/zephyrproject/.venv/bin/python3",
"python.terminal.activateEnvironment": true,
"python.terminal.activateEnvInCurrentTerminal": true,
"terminal.integrated.env.linux": {
"ZEPHYR_BASE": "${env:HOME}/zephyrproject/zephyr",
"ZEPHYR_SDK_INSTALL_DIR": "${env:HOME}/zephyr-sdk-0.17.2"
},
// ===========================================
// CORTEX-DEBUG SETTINGS
// ===========================================
"cortex-debug.armToolchainPath": "${env:HOME}/zephyr-sdk-0.17.2/arm-zephyr-eabi/bin",
"cortex-debug.openocdPath": "${env:HOME}/zephyr-sdk-0.17.2/sysroots/x86_64-pokysdk-linux/usr/bin/openocd",
"cortex-debug.gdbPath": "${env:HOME}/zephyr-sdk-0.17.2/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb",
"cortex-debug.armToolchainPrefix": "arm-zephyr-eabi",
"cortex-debug.variableUseNaturalFormat": true,
// ===========================================
// C/C++ VISUAL SETTINGS
// ===========================================
"cmake.configureOnOpen": false,
"C_Cpp.default.defines": [
"__CDT_PARSER__"
],
"C_Cpp.default.forcedInclude": [
"${workspaceFolder}/build/zephyr/include/generated/zephyr/autoconf.h",
],
"C_Cpp.default.includePath": [
"${workspaceFolder}/**",
"${ZEPHYR_BASE}/include/**"
],
"C_Cpp.default.mergeConfigurations": true, // TESTE
"C_Cpp.default.compileCommands": "${workspaceFolder}/build/compile_commands.json",
"C_Cpp.default.cStandard": "c11",
"C_Cpp.default.cppStandard": "c++20",
"C_Cpp.default.intelliSenseMode": "linux-gcc-x64",
// C/C++ inactive code style settings
"C_Cpp.inactiveRegionOpacity": 1,
"C_Cpp.inactiveRegionBackgroundColor": "#000000",
"C_Cpp.inactiveRegionForegroundColor": "#ffffff",
// ===========================================
// Editor
// ===========================================
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"terminal.integrated.scrollback": 50000,
// ===========================================
// CLANG-FORMAT CONFIGURATION (NOVO)
// ===========================================
// ===========================================
// ===========================================
"files.associations": {
"rtc_lib.h": "c",
"types.h": "c",
"typeinfo": "c"
},
}