-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopment.code-workspace
144 lines (131 loc) · 4.08 KB
/
development.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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"folders": [
{
"path": "../"
},
{
"name": "zephyrproject",
"path": "../"
},
{
"name": "AppUnderDev",
"path": "./"
},
{
"name": "BootloaderUnderDev",
"path": "../bootloader/mcuboot/boot/zephyr"
}
],
"settings": {
"west": "west",
// Board support package settings:
"bsp": {
"cpu": "",
"soc": "RP2040",
"board": "rpi_pico_w",
"board_root": "${workspaceFolder:zephyrproject}/zephyr",
// "board_path": "${config:bsp.board_root}/boards/arm/${config:bsp.board}",
"board_path": "${config:bsp.board_root}/boards/arm/rpi_pico",
"svd": "${workspaceFolder}/modules/hal/rpi_pico/src/rp2040/hardware_regs/rp2040.svd",
},
// App settings:
"app": {
"name": "${workspaceFolder:AppUnderDev}",
"build_dir": "${workspaceFolder:AppUnderDev}/build",
"zephyr_config": "", // -DOVERLAY_CONFIG=<path_relative_to_sample> use ; for multiple files
"zephyr_dtc_overlay": "", // "-DDTC_OVERLAY_FILE=boards/nucleo_f303re.overlay" // -DDTC_OVERLAY_FILE=<path_relative_to_sample> use ; for multiple files
"compile_args": ""
},
// Bootloader app settings:
"app_boot": {
"name": "${workspaceFolder:BootloaderUnderDev}",
"build_dir": "${workspaceFolder:BootloaderUnderDev}/build",
"zephyr_config": "", // -DOVERLAY_CONFIG=<path_relative_to_sample> use ; for multiple files
"zephyr_dtc_overlay": "",// "-DDTC_OVERLAY_FILE=boards/nucleo_f303re.overlay" // -DDTC_OVERLAY_FILE=<path_relative_to_sample> use ; for multiple files
"compile_args": ""
},
"C_Cpp.default.compilerPath": "${env:GNUARMEMB_TOOLCHAIN_PATH}/bin/arm-zephyr-eabi-gcc",
"C_Cpp.default.compileCommands": "${config:app.build_dir}/compile_commands.json",
"C_Cpp.default.includePath": [
"${workspaceFolder:zephyrproject}/zephyr",
"${env:GNUARMEMB_TOOLCHAIN_PATH}/arm-zephyr-eabi/include",
"${env:GNUARMEMB_TOOLCHAIN_PATH}/arm-zephyr-eabi/sys-include"
],
"cmake.configureOnOpen": false,
"files.associations": {
},
// The number of spaces a tab is equal to. This setting is overridden
// based on the file contents when `editor.detectIndentation` is true.
"editor.tabSize": 8,
// Insert spaces when pressing Tab. This setting is overriden
// based on the file contents when `editor.detectIndentation` is true.
"editor.insertSpaces": false,
// When opening a file, `editor.tabSize` and `editor.insertSpaces`
// will be detected based on the file contents. Set to false to keep
// the values you've explicitly set, above.
"editor.detectIndentation": false,
"editor.rulers": [80],
"editor.cursorBlinking": "smooth",
"files.trimFinalNewlines": true,
"editor.formatOnSave": false,
"editor.codeActionsOnSave": [],
"editor.renderWhitespace": "all",
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/tmp/**": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/bower_components": true,
"**/dist/**": true,
"**/log/**": true,
"**/logs/**": true,
"**/.fdk/**": true,
"**/.west/**": true,
"**/.vscode/**": true,
"**/build/**": true,
"${workspaceRoot}/../zephyr/**": true
},
"files.exclude": {
"**/build/**": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/tmp/**": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/bower_components": true,
"**/dist/**": true,
"**/log/**": true,
"**/.fdk/**": true,
"**/.west/**": true
},
"search.exclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/tmp/**": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/bower_components": true,
"**/dist/**": true,
"**/log/**": true,
"**/.west/**": true
},
"editor.renderControlCharacters": false,
"cortex-debug.variableUseNaturalFormat": false
}
}