blob: 898defc9c60fe1307382b022a3a50f8b9c8c9262 [file] [log] [blame]
Bhaskar Sarmac545cc52020-03-31 21:47:28 -07001{
2 // Use IntelliSense to learn about possible attributes.
3 // Hover to view descriptions of existing attributes.
4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 "version": "0.2.0",
6 "configurations": [
7 {
Carol Yange8432ce2022-03-11 13:02:28 -08008 "name": "Attach to running process",
9 "type": "lldb",
10 "request": "attach",
11 "pid": "${command:pickProcess}"
12 },
13 {
Arkadiusz Bokowyf47f95e2022-10-22 00:41:18 +020014 "name": "Run application (Darwin x64)",
15 "type": "lldb",
16 "request": "launch",
17 "program": "${workspaceFolder}/out/${input:outAppDarwin}",
18 "args": [],
19 "cwd": "${workspaceFolder}"
20 },
21 {
22 "name": "Run application (Linux x64)",
Arkadiusz Bokowy454d7d92023-08-29 20:45:34 +020023 "type": "cppdbg",
Arkadiusz Bokowyf47f95e2022-10-22 00:41:18 +020024 "request": "launch",
25 "program": "${workspaceFolder}/out/${input:outAppLinux}",
26 "args": [],
27 "cwd": "${workspaceFolder}"
28 },
29 {
Arkadiusz Bokowy454d7d92023-08-29 20:45:34 +020030 "name": "Run test (Linux x64)",
31 "type": "cppdbg",
32 "request": "launch",
33 "program": "${workspaceFolder}/out/${input:outTestLinux}",
34 "args": [],
35 "cwd": "${workspaceFolder}"
36 },
37 {
Bhaskar Sarma3e916392020-04-01 09:01:01 -070038 "name": "QRCode Tests",
Bhaskar Sarmac545cc52020-03-31 21:47:28 -070039 "type": "cppdbg",
40 "request": "launch",
vivien-applecb978d82020-05-28 19:33:51 +020041 "program": "${workspaceFolder}/build/default/src/setup_payload/tests/TestQRCode",
Bhaskar Sarmac545cc52020-03-31 21:47:28 -070042 "args": [],
43 "stopAtEntry": false,
44 "cwd": "${workspaceFolder}",
45 "environment": [],
46 "externalConsole": false,
47 "MIMode": "gdb",
Bhaskar Sarma66ea1fa2020-05-04 08:49:58 -070048 "preLaunchTask": "Build QRCode Payload Tests",
Bhaskar Sarmac545cc52020-03-31 21:47:28 -070049 "setupCommands": [
50 {
51 "description": "Enable pretty-printing for gdb",
52 "text": "-enable-pretty-printing",
53 "ignoreFailures": true
54 }
55 ]
Bhaskar Sarma242d1712020-04-01 15:49:17 -070056 },
Bhaskar Sarma242d1712020-04-01 15:49:17 -070057 {
58 "name": "CHIP crypto Tests",
59 "type": "cppdbg",
60 "request": "launch",
Rob Walker77fe54c2020-04-10 13:47:58 -070061 "program": "${workspaceFolder}/build/default/src/crypto/tests/TestCrypto",
Bhaskar Sarma242d1712020-04-01 15:49:17 -070062 "args": [],
63 "stopAtEntry": false,
64 "cwd": "${workspaceFolder}",
65 "environment": [],
66 "externalConsole": false,
67 "MIMode": "gdb",
Bhaskar Sarmaa858a422020-04-10 15:16:52 -070068 "preLaunchTask": "Build & Run Crypto Tests",
69 "setupCommands": [
70 {
71 "description": "Enable pretty-printing for gdb",
72 "text": "-enable-pretty-printing",
73 "ignoreFailures": true
74 }
75 ]
76 },
77 {
78 "name": "CHIP openSSL Tests",
79 "type": "cppdbg",
80 "request": "launch",
Bhaskar Sarma434681e2020-04-28 08:58:56 -070081 "program": "${workspaceFolder}/build/default/src/crypto/tests/TestCryptoPAL",
Bhaskar Sarmaa858a422020-04-10 15:16:52 -070082 "args": [],
83 "stopAtEntry": false,
84 "cwd": "${workspaceFolder}",
85 "environment": [],
86 "externalConsole": false,
87 "MIMode": "gdb",
Bhaskar Sarma6235e2e2020-04-21 18:29:58 -070088 "preLaunchTask": "Build openSSL crypto Tests",
Bhaskar Sarma242d1712020-04-01 15:49:17 -070089 "setupCommands": [
90 {
91 "description": "Enable pretty-printing for gdb",
92 "text": "-enable-pretty-printing",
93 "ignoreFailures": true
94 }
95 ]
Andrei Litvinf48a1a72020-09-24 13:11:25 -040096 },
97 {
Jakub71a97602022-06-16 08:16:45 +020098 "name": "LightingApp (Tizen) [remote]",
99 "type": "cppdbg",
100 "request": "launch",
101 "cwd": "${workspaceFolder}/out/tizen-arm-light",
102 "program": "${workspaceFolder}/out/tizen-arm-light/chip-lighting-app",
103 "miDebuggerPath": "${env:TIZEN_SDK_ROOT}/tools/arm-linux-gnueabi-gcc-9.2/bin/arm-linux-gnueabi-gdb",
104 "additionalSOLibSearchPath": "${env:TIZEN_ROOTFS}",
105 "preLaunchTask": "Launch LightingApp with gdbserver attached (Tizen)",
106 "miDebuggerServerAddress": "localhost:9999",
107 "linux": {
108 "MIMode": "gdb"
109 },
110 "setupCommands": [
111 {
112 "description": "Enable pretty-printing for gdb",
113 "text": "-enable-pretty-printing",
114 "ignoreFailures": true
115 },
116 {
117 "text": "set solib-absolute-prefix ${env:TIZEN_ROOTFS}"
118 },
119 {
120 "text": "set sysroot ${env:TIZEN_SDK_SYSROOT}"
121 },
122 {
123 "text": "set debug-file-directory {env:TIZEN_SDK_SYSROOT}/usr/lib/debug"
124 },
125 {
126 "text": "set solib-search-path ${workspaceFolder}/out/tizen-arm-light"
127 }
128 ]
129 },
Vincent Coubardcc135602021-06-29 16:58:47 +0100130
131 {
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200132 "name": "Debug Mbed examples",
Vincent Coubardcc135602021-06-29 16:58:47 +0100133 "type": "cortex-debug",
134 "request": "launch",
135 "cwd": "${workspaceRoot}/examples/${input:mbedApp}/mbed",
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200136 "executable": "./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-${input:mbedApp}-example.elf",
Artur Tynecki27d6adf2022-05-26 08:26:59 +0200137 "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required
138 "serverpath": "${env:OPENOCD_PATH}/bin/openocd",
Artur Tyneckic8260882021-10-15 18:04:00 +0200139 "servertype": "openocd",
Vincent Coubardcc135602021-06-29 16:58:47 +0100140 "searchDir": [
141 "${workspaceRoot}/config/mbed/scripts",
Artur Tyneckic8260882021-10-15 18:04:00 +0200142 "${env:OPENOCD_PATH}/scripts"
Vincent Coubardcc135602021-06-29 16:58:47 +0100143 ],
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200144 "configFiles": ["${input:mbedTarget}.tcl"],
Vincent Coubardcc135602021-06-29 16:58:47 +0100145 "overrideLaunchCommands": [
146 "-enable-pretty-printing",
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200147 "monitor program {./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-${input:mbedApp}-example.hex}",
Vincent Coubardcc135602021-06-29 16:58:47 +0100148 "monitor reset run",
149 "monitor sleep 200",
150 "monitor psoc6 reset_halt sysresetreq"
151 ],
152 "numberOfProcessors": 2,
153 "targetProcessor": 1, // Set to 0 for the CM0+, set to 1 for the CM4
154 "overrideRestartCommands": [
155 "monitor reset init",
156 "monitor reset run",
157 "monitor sleep 200",
158 "monitor psoc6 reset_halt sysresetreq"
159 ],
160 "runToMain": true, // if true, program will halt at main. Not used for a restart
161 "showDevDebugOutput": false // When set to true, displays output of GDB.
162 },
163
164 {
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200165 "name": "Debug Mbed examples [remote]",
Vincent Coubardcc135602021-06-29 16:58:47 +0100166 "type": "cortex-debug",
167 "request": "launch",
168 "cwd": "${workspaceRoot}/examples/${input:mbedApp}/mbed",
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200169 "executable": "./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-${input:mbedApp}-example.elf",
Artur Tynecki27d6adf2022-05-26 08:26:59 +0200170 "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required
Vincent Coubardcc135602021-06-29 16:58:47 +0100171 "servertype": "external",
172 "gdbTarget": "host.docker.internal:3334", //port 3333 for the CM0+, 3334 for the CM4
173 "overrideLaunchCommands": [
174 "-enable-pretty-printing",
175 "monitor reset halt",
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200176 "load ./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-${input:mbedApp}-example.hex",
Vincent Coubardcc135602021-06-29 16:58:47 +0100177 "monitor reset run",
178 "monitor sleep 200",
179 "monitor psoc6 reset_halt sysresetreq"
180 ],
181 "overrideRestartCommands": [
182 "monitor reset init",
183 "monitor reset run",
184 "monitor sleep 200",
185 "monitor psoc6 reset_halt sysresetreq"
186 ],
187 "runToMain": true, // if true, program will halt at main. Not used for a restart
188 "showDevDebugOutput": false // When set to true, displays output of GDB.
189 },
190
191 {
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200192 "name": "Flash Mbed examples",
Vincent Coubardcc135602021-06-29 16:58:47 +0100193 "type": "cortex-debug",
194 "request": "launch",
195 "cwd": "${workspaceRoot}/examples/${input:mbedApp}/mbed",
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200196 "executable": "./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-${input:mbedApp}-example.elf",
Artur Tynecki27d6adf2022-05-26 08:26:59 +0200197 "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required
198 "serverpath": "${env:OPENOCD_PATH}/bin/openocd",
Artur Tyneckic8260882021-10-15 18:04:00 +0200199 "servertype": "openocd",
Vincent Coubardcc135602021-06-29 16:58:47 +0100200 "searchDir": [
201 "${workspaceRoot}/config/mbed/scripts",
Artur Tyneckic8260882021-10-15 18:04:00 +0200202 "${env:OPENOCD_PATH}/scripts"
Vincent Coubardcc135602021-06-29 16:58:47 +0100203 ],
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200204 "configFiles": ["${input:mbedTarget}.tcl"],
Vincent Coubardcc135602021-06-29 16:58:47 +0100205 "overrideLaunchCommands": [
206 "monitor reset halt",
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200207 "monitor program {./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-${input:mbedApp}-example.hex}",
Vincent Coubardcc135602021-06-29 16:58:47 +0100208 "monitor reset run",
209 "quit"
210 ],
211 "numberOfProcessors": 2,
212 "targetProcessor": 1, // Set to 0 for the CM0+, set to 1 for the CM4
213 "showDevDebugOutput": false // When set to true, displays output of GDB.
214 },
215
216 {
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200217 "name": "Flash Mbed examples [remote]",
Vincent Coubardcc135602021-06-29 16:58:47 +0100218 "type": "cortex-debug",
219 "request": "launch",
220 "cwd": "${workspaceRoot}/examples/${input:mbedApp}/mbed",
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200221 "executable": "./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-${input:mbedApp}-example.elf",
Artur Tynecki27d6adf2022-05-26 08:26:59 +0200222 "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required
Vincent Coubardcc135602021-06-29 16:58:47 +0100223 "servertype": "external",
224 "gdbTarget": "host.docker.internal:3334", //port 3333 for the CM0+, 3334 for the CM4
225 "overrideLaunchCommands": [
226 "monitor reset halt",
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200227 "load ./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-${input:mbedApp}-example.hex",
Vincent Coubardcc135602021-06-29 16:58:47 +0100228 "monitor reset run",
229 "quit"
230 ],
231 "showDevDebugOutput": false // When set to true, displays output of GDB.
Vincent Coubardd48d7542021-10-06 22:35:20 +0100232 },
233
234 {
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200235 "name": "Debug Mbed unit tests",
Vincent Coubardd48d7542021-10-06 22:35:20 +0100236 "type": "cortex-debug",
237 "request": "launch",
Artur Tynecki43cdf4f2021-11-30 04:28:01 +0100238 "cwd": "${workspaceRoot}/src/test_driver/mbed/unit_tests",
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200239 "executable": "./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-unit-tests.elf",
Artur Tynecki27d6adf2022-05-26 08:26:59 +0200240 "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required
Vincent Coubardd48d7542021-10-06 22:35:20 +0100241 "servertype": "openocd",
Artur Tynecki27d6adf2022-05-26 08:26:59 +0200242 "serverpath": "${env:OPENOCD_PATH}/bin/openocd",
Vincent Coubardd48d7542021-10-06 22:35:20 +0100243 "searchDir": [
244 "${workspaceRoot}/config/mbed/scripts",
245 "${env:OPENOCD_PATH}/scripts"
246 ],
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200247 "configFiles": ["${input:mbedTarget}.tcl"],
Vincent Coubardd48d7542021-10-06 22:35:20 +0100248 "overrideLaunchCommands": [
249 "-enable-pretty-printing",
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200250 "monitor program {./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-unit-tests.hex}",
Vincent Coubardd48d7542021-10-06 22:35:20 +0100251 "monitor reset run",
252 "monitor sleep 200",
253 "monitor psoc6 reset_halt sysresetreq"
254 ],
255 "numberOfProcessors": 2,
256 "targetProcessor": 1, // Set to 0 for the CM0+, set to 1 for the CM4
257 "overrideRestartCommands": [
258 "monitor reset init",
259 "monitor reset run",
260 "monitor sleep 200",
261 "monitor psoc6 reset_halt sysresetreq"
262 ],
263 "runToMain": true, // if true, program will halt at main. Not used for a restart
264 "showDevDebugOutput": false // When set to true, displays output of GDB.
265 },
266
267 {
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200268 "name": "Debug Mbed unit tests [remote]",
Vincent Coubardd48d7542021-10-06 22:35:20 +0100269 "type": "cortex-debug",
270 "request": "launch",
Artur Tynecki43cdf4f2021-11-30 04:28:01 +0100271 "cwd": "${workspaceRoot}/src/test_driver/mbed/unit_tests",
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200272 "executable": "./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-unit-tests.elf",
Artur Tynecki27d6adf2022-05-26 08:26:59 +0200273 "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required
Vincent Coubardd48d7542021-10-06 22:35:20 +0100274 "servertype": "external",
Vincent Coubardd48d7542021-10-06 22:35:20 +0100275 "gdbTarget": "host.docker.internal:3334", //port 3333 for the CM0+, 3334 for the CM4
276 "overrideLaunchCommands": [
277 "-enable-pretty-printing",
278 "monitor reset halt",
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200279 "load ./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-unit-tests.hex",
Vincent Coubardd48d7542021-10-06 22:35:20 +0100280 "monitor reset run",
281 "monitor sleep 200",
282 "monitor psoc6 reset_halt sysresetreq"
283 ],
284 "overrideRestartCommands": [
285 "monitor reset init",
286 "monitor reset run",
287 "monitor sleep 200",
288 "monitor psoc6 reset_halt sysresetreq"
289 ],
290 "runToMain": true, // if true, program will halt at main. Not used for a restart
291 "showDevDebugOutput": false // When set to true, displays output of GDB.
292 },
293
294 {
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200295 "name": "Flash Mbed unit tests",
Vincent Coubardd48d7542021-10-06 22:35:20 +0100296 "type": "cortex-debug",
297 "request": "launch",
Artur Tynecki43cdf4f2021-11-30 04:28:01 +0100298 "cwd": "${workspaceRoot}/src/test_driver/mbed//unit_tests",
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200299 "executable": "./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-unit-tests.elf",
Artur Tynecki27d6adf2022-05-26 08:26:59 +0200300 "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required
Vincent Coubardd48d7542021-10-06 22:35:20 +0100301 "servertype": "openocd",
Artur Tynecki27d6adf2022-05-26 08:26:59 +0200302 "serverpath": "${env:OPENOCD_PATH}/bin/openocd",
Vincent Coubardd48d7542021-10-06 22:35:20 +0100303 "searchDir": [
304 "${workspaceRoot}/config/mbed/scripts",
305 "${env:OPENOCD_PATH/scripts}"
306 ],
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200307 "configFiles": ["${input:mbedTarget}.tcl"],
Vincent Coubardd48d7542021-10-06 22:35:20 +0100308 "overrideLaunchCommands": [
309 "monitor reset halt",
Artur Tynecki42a7b0a2022-01-26 05:46:24 +0100310 "monitor program {./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-unit-tests.hex}",
Vincent Coubardd48d7542021-10-06 22:35:20 +0100311 "monitor reset run",
312 "quit"
313 ],
314 "numberOfProcessors": 2,
315 "targetProcessor": 1, // Set to 0 for the CM0+, set to 1 for the CM4
316 "showDevDebugOutput": false // When set to true, displays output of GDB.
317 },
318
319 {
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200320 "name": "Flash Mbed unit tests [remote]",
Vincent Coubardd48d7542021-10-06 22:35:20 +0100321 "type": "cortex-debug",
322 "request": "launch",
Artur Tynecki43cdf4f2021-11-30 04:28:01 +0100323 "cwd": "${workspaceRoot}/src/test_driver/mbed/unit_tests",
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200324 "executable": "./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-unit-tests.elf",
Artur Tynecki27d6adf2022-05-26 08:26:59 +0200325 "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required
Vincent Coubardd48d7542021-10-06 22:35:20 +0100326 "servertype": "external",
Vincent Coubardd48d7542021-10-06 22:35:20 +0100327 "gdbTarget": "host.docker.internal:3334", //port 3333 for the CM0+, 3334 for the CM4
328 "overrideLaunchCommands": [
329 "monitor reset halt",
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200330 "load ./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-unit-tests.hex",
Vincent Coubardd48d7542021-10-06 22:35:20 +0100331 "monitor reset run",
332 "quit"
333 ],
334 "showDevDebugOutput": false // When set to true, displays output of GDB.
Artur Tynecki42a7b0a2022-01-26 05:46:24 +0100335 },
336
337 {
338 "name": "Debug Mbed bootloader",
339 "type": "cortex-debug",
340 "request": "launch",
341 "cwd": "${workspaceRoot}/examples/platform/mbed/bootloader",
342 "executable": "./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-bootloader.elf",
Artur Tynecki27d6adf2022-05-26 08:26:59 +0200343 "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required
Artur Tynecki42a7b0a2022-01-26 05:46:24 +0100344 "servertype": "openocd",
Artur Tynecki27d6adf2022-05-26 08:26:59 +0200345 "serverpath": "${env:OPENOCD_PATH}/bin/openocd",
Artur Tynecki42a7b0a2022-01-26 05:46:24 +0100346 "searchDir": [
347 "${workspaceRoot}/config/mbed/scripts",
348 "${env:OPENOCD_PATH}/scripts"
349 ],
350 "configFiles": ["${input:mbedTarget}.tcl"],
351 "overrideLaunchCommands": [
352 "-enable-pretty-printing",
353 "monitor program {./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-bootloader.hex}",
354 "monitor reset run",
355 "monitor sleep 200",
356 "monitor psoc6 reset_halt sysresetreq"
357 ],
358 "numberOfProcessors": 2,
359 "targetProcessor": 1, // Set to 0 for the CM0+, set to 1 for the CM4
360 "overrideRestartCommands": [
361 "monitor reset init",
362 "monitor reset run",
363 "monitor sleep 200",
364 "monitor psoc6 reset_halt sysresetreq"
365 ],
366 "runToMain": true, // if true, program will halt at main. Not used for a restart
367 "showDevDebugOutput": false // When set to true, displays output of GDB.
368 },
369
370 {
371 "name": "Debug Mbed bootloader [remote]",
372 "type": "cortex-debug",
373 "request": "launch",
374 "cwd": "${workspaceRoot}/examples/platform/mbed/bootloader",
375 "executable": "./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-bootloader.elf",
Artur Tynecki27d6adf2022-05-26 08:26:59 +0200376 "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required
Artur Tynecki42a7b0a2022-01-26 05:46:24 +0100377 "servertype": "external",
378 "gdbTarget": "host.docker.internal:3334", //port 3333 for the CM0+, 3334 for the CM4
379 "overrideLaunchCommands": [
380 "-enable-pretty-printing",
381 "monitor reset halt",
382 "load ./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-bootloader.hex",
383 "monitor reset run",
384 "monitor sleep 200",
385 "monitor psoc6 reset_halt sysresetreq"
386 ],
387 "overrideRestartCommands": [
388 "monitor reset init",
389 "monitor reset run",
390 "monitor sleep 200",
391 "monitor psoc6 reset_halt sysresetreq"
392 ],
393 "runToMain": true, // if true, program will halt at main. Not used for a restart
394 "showDevDebugOutput": false // When set to true, displays output of GDB.
Carol Yange8432ce2022-03-11 13:02:28 -0800395 },
396
397 {
Yufeng Wangbcaf1882022-10-25 18:17:14 -0700398 "name": "CHIP All Clusters App (Linux)",
399 "type": "lldb",
400 "request": "launch",
401 "program": "${workspaceFolder}/out/debug/standalone/chip-all-clusters-app",
402 "cwd": "${workspaceFolder}"
403 },
404
405 {
Yufeng Wang6cac6952024-05-17 17:17:22 +0000406 "name": "Fabric Admin (Linux)",
407 "type": "lldb",
408 "request": "launch",
409 "program": "${workspaceFolder}/out/debug/standalone/fabric-admin",
410 "args": ["--log-file-path", "/tmp/fabric_admin.log"],
411 "cwd": "${workspaceFolder}"
412 },
413
414 {
Yufeng Wangf4a7cb42024-05-07 15:54:00 +0000415 "name": "Fabric Bridge App (Linux)",
416 "type": "lldb",
417 "request": "launch",
418 "program": "${workspaceFolder}/out/debug/standalone/fabric-bridge-app",
419 "cwd": "${workspaceFolder}"
420 },
421
422 {
Carol Yange8432ce2022-03-11 13:02:28 -0800423 "name": "OTA Requestor App (Linux)",
424 "type": "lldb",
425 "request": "launch",
426 "program": "${workspaceFolder}/out/ota-requestor/chip-ota-requestor-app",
427 "args": [
428 "--discriminator",
429 "18",
430 "--secured-device-port",
431 "5560",
432 "--KVS",
433 "/tmp/chip_kvs_requestor"
434 ],
435 "cwd": "${workspaceFolder}"
436 },
437
438 {
439 "name": "OTA Provider App (Linux)",
440 "type": "lldb",
441 "request": "launch",
442 "program": "${workspaceFolder}/out/ota-provider/chip-ota-provider-app",
443 "args": [
444 "--discriminator",
445 "22",
446 "--KVS",
447 "/tmp/chip_kvs_provider",
448 "--filepath",
449 "/tmp/ota-image.bin"
450 ],
451 "cwd": "${workspaceFolder}"
Artur Tynecki0efd3182022-12-05 20:18:32 +0100452 },
453
454 {
455 "name": "Debug Open IoT SDK example application",
456 "type": "cortex-debug",
457 "request": "launch",
Artur Tynecki44c7faf2023-05-22 17:30:49 +0200458 "cwd": "${workspaceRoot}/examples/${input:openiotsdkExample}/openiotsdk",
459 "executable": "./build/chip-openiotsdk-${input:openiotsdkExample}-example.elf",
Artur Tyneckiac164172023-05-11 19:11:59 +0200460 "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/",
Artur Tynecki0efd3182022-12-05 20:18:32 +0100461 "servertype": "external",
462 "gdbTarget": "${input:openiotsdkRemoteHost}:31627", //GDBserver port on FVP
Artur Tynecki4f24db42023-01-29 01:50:10 +0100463 "overrideLaunchCommands": [
464 "-enable-pretty-printing",
465 "add-symbol-file ./build/bl2.elf 0x10000000",
466 "add-symbol-file ./build/tfm_s.elf 0x38000400",
Artur Tynecki44c7faf2023-05-22 17:30:49 +0200467 "add-symbol-file ./build/chip-openiotsdk-${input:openiotsdkExample}-example_ns.elf 0x28060400",
Artur Tynecki4f24db42023-01-29 01:50:10 +0100468 "break main_ns.cpp:main"
469 ],
Artur Tynecki0efd3182022-12-05 20:18:32 +0100470 "runToEntryPoint": "main",
471 "preLaunchTask": "Debug Open IoT SDK example",
472 "showDevDebugOutput": "parsed"
473 },
474 {
475 "name": "Debug Open IoT SDK unit-tests application",
476 "type": "cortex-debug",
477 "request": "launch",
478 "cwd": "${workspaceRoot}/src/test_driver/openiotsdk/unit-tests",
Artur Tynecki44c7faf2023-05-22 17:30:49 +0200479 "executable": "./build/${input:openiotsdkUnitTest}.elf",
Artur Tyneckiac164172023-05-11 19:11:59 +0200480 "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/",
Artur Tynecki0efd3182022-12-05 20:18:32 +0100481 "servertype": "external",
482 "gdbTarget": ":31627", //GDBserver port on FVP
Artur Tynecki58699c82023-05-16 04:56:13 +0200483 "overrideLaunchCommands": [
484 "-enable-pretty-printing",
485 "add-symbol-file ./build/bl2.elf 0x10000000",
486 "add-symbol-file ./build/tfm_s.elf 0x38000400",
Artur Tynecki44c7faf2023-05-22 17:30:49 +0200487 "add-symbol-file ./build/${input:openiotsdkUnitTest}_ns.elf 0x28060400",
Artur Tynecki58699c82023-05-16 04:56:13 +0200488 "break main_ns.cpp:main"
489 ],
Artur Tynecki0efd3182022-12-05 20:18:32 +0100490 "runToEntryPoint": "main",
491 "preLaunchTask": "Debug Open IoT SDK unit-tests",
492 "showDevDebugOutput": "parsed"
Vincent Coubardcc135602021-06-29 16:58:47 +0100493 }
494 ],
495 "inputs": [
496 {
Arkadiusz Bokowyf47f95e2022-10-22 00:41:18 +0200497 "type": "command",
498 "id": "outAppDarwin",
499 "command": "shellCommand.execute",
500 "args": {
501 "command": "find ${workspaceFolder}/out/darwin-x64-* -maxdepth 2 -perm +111 -name 'chip-*' |sort |sed 's$${workspaceFolder}/out/$$'",
502 "description": "Select the application to run"
503 }
504 },
505 {
506 "type": "command",
507 "id": "outAppLinux",
508 "command": "shellCommand.execute",
509 "args": {
510 "command": "find ${workspaceFolder}/out/linux-x64-* -maxdepth 2 -executable -name 'chip-*' |sort |sed 's$${workspaceFolder}/out/$$'",
511 "description": "Select the application to run"
512 }
513 },
514 {
Arkadiusz Bokowy454d7d92023-08-29 20:45:34 +0200515 "type": "command",
516 "id": "outTestLinux",
517 "command": "shellCommand.execute",
518 "args": {
519 "command": "find ${workspaceFolder}/out/linux-x64-*/tests -type f -executable |sort |sed 's$${workspaceFolder}/out/$$'",
520 "description": "Select the test to run"
521 }
522 },
523 {
Vincent Coubardcc135602021-06-29 16:58:47 +0100524 "type": "pickString",
525 "id": "mbedDebugProfile",
526 "description": "What mbed profile do you want to debug?",
527 "options": ["debug", "develop"],
528 "default": "debug"
529 },
530 {
531 "type": "pickString",
532 "id": "mbedFlashProfile",
533 "description": "What mbed profile do you want to flash?",
534 "options": ["release", "debug", "develop"],
535 "default": "release"
536 },
537 {
538 "type": "pickString",
539 "id": "mbedApp",
540 "description": "What mbed application do you want to use?",
Artur Tyneckiec7ffd22021-10-25 19:49:17 +0200541 "options": [
542 "lock-app",
543 "lighting-app",
544 "pigweed-app",
Artur Tyneckif1b8e2c2021-10-27 20:40:18 +0200545 "all-clusters-app",
Artur Tynecki42a7b0a2022-01-26 05:46:24 +0100546 "shell",
547 "ota-requestor-app"
Artur Tyneckiec7ffd22021-10-25 19:49:17 +0200548 ],
Artur Tynecki35fb13e2021-10-12 18:23:45 +0200549 "default": "lock-app"
550 },
551 {
552 "type": "pickString",
553 "id": "mbedTarget",
554 "description": "What mbed target do you want to use?",
555 "options": ["CY8CPROTO_062_4343W"],
556 "default": "CY8CPROTO_062_4343W"
Artur Tynecki0efd3182022-12-05 20:18:32 +0100557 },
558 {
Artur Tynecki44c7faf2023-05-22 17:30:49 +0200559 "type": "command",
560 "id": "openiotsdkExample",
561 "command": "shellCommand.execute",
562 "args": {
563 "command": "cat examples/platform/openiotsdk/supported_examples.txt",
564 "description": "What Open IoT SDK example application do you want to use?"
565 }
Artur Tynecki0efd3182022-12-05 20:18:32 +0100566 },
567 {
568 "type": "promptString",
569 "id": "openiotsdkRemoteHost",
570 "description": "Type the hostname/IP address of external GDB target that you want to connect to. Leave blank for internal GDB server",
571 "default": ""
572 },
573 {
Artur Tynecki44c7faf2023-05-22 17:30:49 +0200574 "type": "command",
575 "id": "openiotsdkUnitTest",
576 "command": "shellCommand.execute",
577 "args": {
578 "command": "cat src/test_driver/openiotsdk/unit-tests/test_components.txt",
579 "description": "What Open IoT SDK unit test application do you want to use?"
580 }
Bhaskar Sarmac545cc52020-03-31 21:47:28 -0700581 }
582 ]
Rob Walker77fe54c2020-04-10 13:47:58 -0700583}