Bhaskar Sarma | c545cc5 | 2020-03-31 21:47:28 -0700 | [diff] [blame] | 1 | { |
| 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 Yang | e8432ce | 2022-03-11 13:02:28 -0800 | [diff] [blame] | 8 | "name": "Attach to running process", |
| 9 | "type": "lldb", |
| 10 | "request": "attach", |
| 11 | "pid": "${command:pickProcess}" |
| 12 | }, |
| 13 | { |
Arkadiusz Bokowy | f47f95e | 2022-10-22 00:41:18 +0200 | [diff] [blame] | 14 | "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 Bokowy | 454d7d9 | 2023-08-29 20:45:34 +0200 | [diff] [blame] | 23 | "type": "cppdbg", |
Arkadiusz Bokowy | f47f95e | 2022-10-22 00:41:18 +0200 | [diff] [blame] | 24 | "request": "launch", |
| 25 | "program": "${workspaceFolder}/out/${input:outAppLinux}", |
| 26 | "args": [], |
| 27 | "cwd": "${workspaceFolder}" |
| 28 | }, |
| 29 | { |
Arkadiusz Bokowy | 454d7d9 | 2023-08-29 20:45:34 +0200 | [diff] [blame] | 30 | "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 Sarma | 3e91639 | 2020-04-01 09:01:01 -0700 | [diff] [blame] | 38 | "name": "QRCode Tests", |
Bhaskar Sarma | c545cc5 | 2020-03-31 21:47:28 -0700 | [diff] [blame] | 39 | "type": "cppdbg", |
| 40 | "request": "launch", |
vivien-apple | cb978d8 | 2020-05-28 19:33:51 +0200 | [diff] [blame] | 41 | "program": "${workspaceFolder}/build/default/src/setup_payload/tests/TestQRCode", |
Bhaskar Sarma | c545cc5 | 2020-03-31 21:47:28 -0700 | [diff] [blame] | 42 | "args": [], |
| 43 | "stopAtEntry": false, |
| 44 | "cwd": "${workspaceFolder}", |
| 45 | "environment": [], |
| 46 | "externalConsole": false, |
| 47 | "MIMode": "gdb", |
Bhaskar Sarma | 66ea1fa | 2020-05-04 08:49:58 -0700 | [diff] [blame] | 48 | "preLaunchTask": "Build QRCode Payload Tests", |
Bhaskar Sarma | c545cc5 | 2020-03-31 21:47:28 -0700 | [diff] [blame] | 49 | "setupCommands": [ |
| 50 | { |
| 51 | "description": "Enable pretty-printing for gdb", |
| 52 | "text": "-enable-pretty-printing", |
| 53 | "ignoreFailures": true |
| 54 | } |
| 55 | ] |
Bhaskar Sarma | 242d171 | 2020-04-01 15:49:17 -0700 | [diff] [blame] | 56 | }, |
Bhaskar Sarma | 242d171 | 2020-04-01 15:49:17 -0700 | [diff] [blame] | 57 | { |
| 58 | "name": "CHIP crypto Tests", |
| 59 | "type": "cppdbg", |
| 60 | "request": "launch", |
Rob Walker | 77fe54c | 2020-04-10 13:47:58 -0700 | [diff] [blame] | 61 | "program": "${workspaceFolder}/build/default/src/crypto/tests/TestCrypto", |
Bhaskar Sarma | 242d171 | 2020-04-01 15:49:17 -0700 | [diff] [blame] | 62 | "args": [], |
| 63 | "stopAtEntry": false, |
| 64 | "cwd": "${workspaceFolder}", |
| 65 | "environment": [], |
| 66 | "externalConsole": false, |
| 67 | "MIMode": "gdb", |
Bhaskar Sarma | a858a42 | 2020-04-10 15:16:52 -0700 | [diff] [blame] | 68 | "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 Sarma | 434681e | 2020-04-28 08:58:56 -0700 | [diff] [blame] | 81 | "program": "${workspaceFolder}/build/default/src/crypto/tests/TestCryptoPAL", |
Bhaskar Sarma | a858a42 | 2020-04-10 15:16:52 -0700 | [diff] [blame] | 82 | "args": [], |
| 83 | "stopAtEntry": false, |
| 84 | "cwd": "${workspaceFolder}", |
| 85 | "environment": [], |
| 86 | "externalConsole": false, |
| 87 | "MIMode": "gdb", |
Bhaskar Sarma | 6235e2e | 2020-04-21 18:29:58 -0700 | [diff] [blame] | 88 | "preLaunchTask": "Build openSSL crypto Tests", |
Bhaskar Sarma | 242d171 | 2020-04-01 15:49:17 -0700 | [diff] [blame] | 89 | "setupCommands": [ |
| 90 | { |
| 91 | "description": "Enable pretty-printing for gdb", |
| 92 | "text": "-enable-pretty-printing", |
| 93 | "ignoreFailures": true |
| 94 | } |
| 95 | ] |
Andrei Litvin | f48a1a7 | 2020-09-24 13:11:25 -0400 | [diff] [blame] | 96 | }, |
| 97 | { |
Jakub | 71a9760 | 2022-06-16 08:16:45 +0200 | [diff] [blame] | 98 | "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 Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 130 | |
| 131 | { |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 132 | "name": "Debug Mbed examples", |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 133 | "type": "cortex-debug", |
| 134 | "request": "launch", |
| 135 | "cwd": "${workspaceRoot}/examples/${input:mbedApp}/mbed", |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 136 | "executable": "./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-${input:mbedApp}-example.elf", |
Artur Tynecki | 27d6adf | 2022-05-26 08:26:59 +0200 | [diff] [blame] | 137 | "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required |
| 138 | "serverpath": "${env:OPENOCD_PATH}/bin/openocd", |
Artur Tynecki | c826088 | 2021-10-15 18:04:00 +0200 | [diff] [blame] | 139 | "servertype": "openocd", |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 140 | "searchDir": [ |
| 141 | "${workspaceRoot}/config/mbed/scripts", |
Artur Tynecki | c826088 | 2021-10-15 18:04:00 +0200 | [diff] [blame] | 142 | "${env:OPENOCD_PATH}/scripts" |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 143 | ], |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 144 | "configFiles": ["${input:mbedTarget}.tcl"], |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 145 | "overrideLaunchCommands": [ |
| 146 | "-enable-pretty-printing", |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 147 | "monitor program {./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-${input:mbedApp}-example.hex}", |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 148 | "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 Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 165 | "name": "Debug Mbed examples [remote]", |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 166 | "type": "cortex-debug", |
| 167 | "request": "launch", |
| 168 | "cwd": "${workspaceRoot}/examples/${input:mbedApp}/mbed", |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 169 | "executable": "./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-${input:mbedApp}-example.elf", |
Artur Tynecki | 27d6adf | 2022-05-26 08:26:59 +0200 | [diff] [blame] | 170 | "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 171 | "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 Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 176 | "load ./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-${input:mbedApp}-example.hex", |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 177 | "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 Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 192 | "name": "Flash Mbed examples", |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 193 | "type": "cortex-debug", |
| 194 | "request": "launch", |
| 195 | "cwd": "${workspaceRoot}/examples/${input:mbedApp}/mbed", |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 196 | "executable": "./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-${input:mbedApp}-example.elf", |
Artur Tynecki | 27d6adf | 2022-05-26 08:26:59 +0200 | [diff] [blame] | 197 | "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required |
| 198 | "serverpath": "${env:OPENOCD_PATH}/bin/openocd", |
Artur Tynecki | c826088 | 2021-10-15 18:04:00 +0200 | [diff] [blame] | 199 | "servertype": "openocd", |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 200 | "searchDir": [ |
| 201 | "${workspaceRoot}/config/mbed/scripts", |
Artur Tynecki | c826088 | 2021-10-15 18:04:00 +0200 | [diff] [blame] | 202 | "${env:OPENOCD_PATH}/scripts" |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 203 | ], |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 204 | "configFiles": ["${input:mbedTarget}.tcl"], |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 205 | "overrideLaunchCommands": [ |
| 206 | "monitor reset halt", |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 207 | "monitor program {./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-${input:mbedApp}-example.hex}", |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 208 | "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 Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 217 | "name": "Flash Mbed examples [remote]", |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 218 | "type": "cortex-debug", |
| 219 | "request": "launch", |
| 220 | "cwd": "${workspaceRoot}/examples/${input:mbedApp}/mbed", |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 221 | "executable": "./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-${input:mbedApp}-example.elf", |
Artur Tynecki | 27d6adf | 2022-05-26 08:26:59 +0200 | [diff] [blame] | 222 | "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 223 | "servertype": "external", |
| 224 | "gdbTarget": "host.docker.internal:3334", //port 3333 for the CM0+, 3334 for the CM4 |
| 225 | "overrideLaunchCommands": [ |
| 226 | "monitor reset halt", |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 227 | "load ./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-${input:mbedApp}-example.hex", |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 228 | "monitor reset run", |
| 229 | "quit" |
| 230 | ], |
| 231 | "showDevDebugOutput": false // When set to true, displays output of GDB. |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 232 | }, |
| 233 | |
| 234 | { |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 235 | "name": "Debug Mbed unit tests", |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 236 | "type": "cortex-debug", |
| 237 | "request": "launch", |
Artur Tynecki | 43cdf4f | 2021-11-30 04:28:01 +0100 | [diff] [blame] | 238 | "cwd": "${workspaceRoot}/src/test_driver/mbed/unit_tests", |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 239 | "executable": "./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-unit-tests.elf", |
Artur Tynecki | 27d6adf | 2022-05-26 08:26:59 +0200 | [diff] [blame] | 240 | "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 241 | "servertype": "openocd", |
Artur Tynecki | 27d6adf | 2022-05-26 08:26:59 +0200 | [diff] [blame] | 242 | "serverpath": "${env:OPENOCD_PATH}/bin/openocd", |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 243 | "searchDir": [ |
| 244 | "${workspaceRoot}/config/mbed/scripts", |
| 245 | "${env:OPENOCD_PATH}/scripts" |
| 246 | ], |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 247 | "configFiles": ["${input:mbedTarget}.tcl"], |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 248 | "overrideLaunchCommands": [ |
| 249 | "-enable-pretty-printing", |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 250 | "monitor program {./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-unit-tests.hex}", |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 251 | "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 Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 268 | "name": "Debug Mbed unit tests [remote]", |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 269 | "type": "cortex-debug", |
| 270 | "request": "launch", |
Artur Tynecki | 43cdf4f | 2021-11-30 04:28:01 +0100 | [diff] [blame] | 271 | "cwd": "${workspaceRoot}/src/test_driver/mbed/unit_tests", |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 272 | "executable": "./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-unit-tests.elf", |
Artur Tynecki | 27d6adf | 2022-05-26 08:26:59 +0200 | [diff] [blame] | 273 | "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 274 | "servertype": "external", |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 275 | "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 Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 279 | "load ./build-${input:mbedTarget}/${input:mbedDebugProfile}/chip-mbed-unit-tests.hex", |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 280 | "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 Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 295 | "name": "Flash Mbed unit tests", |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 296 | "type": "cortex-debug", |
| 297 | "request": "launch", |
Artur Tynecki | 43cdf4f | 2021-11-30 04:28:01 +0100 | [diff] [blame] | 298 | "cwd": "${workspaceRoot}/src/test_driver/mbed//unit_tests", |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 299 | "executable": "./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-unit-tests.elf", |
Artur Tynecki | 27d6adf | 2022-05-26 08:26:59 +0200 | [diff] [blame] | 300 | "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 301 | "servertype": "openocd", |
Artur Tynecki | 27d6adf | 2022-05-26 08:26:59 +0200 | [diff] [blame] | 302 | "serverpath": "${env:OPENOCD_PATH}/bin/openocd", |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 303 | "searchDir": [ |
| 304 | "${workspaceRoot}/config/mbed/scripts", |
| 305 | "${env:OPENOCD_PATH/scripts}" |
| 306 | ], |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 307 | "configFiles": ["${input:mbedTarget}.tcl"], |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 308 | "overrideLaunchCommands": [ |
| 309 | "monitor reset halt", |
Artur Tynecki | 42a7b0a | 2022-01-26 05:46:24 +0100 | [diff] [blame] | 310 | "monitor program {./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-unit-tests.hex}", |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 311 | "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 Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 320 | "name": "Flash Mbed unit tests [remote]", |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 321 | "type": "cortex-debug", |
| 322 | "request": "launch", |
Artur Tynecki | 43cdf4f | 2021-11-30 04:28:01 +0100 | [diff] [blame] | 323 | "cwd": "${workspaceRoot}/src/test_driver/mbed/unit_tests", |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 324 | "executable": "./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-unit-tests.elf", |
Artur Tynecki | 27d6adf | 2022-05-26 08:26:59 +0200 | [diff] [blame] | 325 | "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 326 | "servertype": "external", |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 327 | "gdbTarget": "host.docker.internal:3334", //port 3333 for the CM0+, 3334 for the CM4 |
| 328 | "overrideLaunchCommands": [ |
| 329 | "monitor reset halt", |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 330 | "load ./build-${input:mbedTarget}/${input:mbedFlashProfile}/chip-mbed-unit-tests.hex", |
Vincent Coubard | d48d754 | 2021-10-06 22:35:20 +0100 | [diff] [blame] | 331 | "monitor reset run", |
| 332 | "quit" |
| 333 | ], |
| 334 | "showDevDebugOutput": false // When set to true, displays output of GDB. |
Artur Tynecki | 42a7b0a | 2022-01-26 05:46:24 +0100 | [diff] [blame] | 335 | }, |
| 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 Tynecki | 27d6adf | 2022-05-26 08:26:59 +0200 | [diff] [blame] | 343 | "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required |
Artur Tynecki | 42a7b0a | 2022-01-26 05:46:24 +0100 | [diff] [blame] | 344 | "servertype": "openocd", |
Artur Tynecki | 27d6adf | 2022-05-26 08:26:59 +0200 | [diff] [blame] | 345 | "serverpath": "${env:OPENOCD_PATH}/bin/openocd", |
Artur Tynecki | 42a7b0a | 2022-01-26 05:46:24 +0100 | [diff] [blame] | 346 | "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 Tynecki | 27d6adf | 2022-05-26 08:26:59 +0200 | [diff] [blame] | 376 | "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", // Pigweed environment bootstraping required |
Artur Tynecki | 42a7b0a | 2022-01-26 05:46:24 +0100 | [diff] [blame] | 377 | "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 Yang | e8432ce | 2022-03-11 13:02:28 -0800 | [diff] [blame] | 395 | }, |
| 396 | |
| 397 | { |
Yufeng Wang | bcaf188 | 2022-10-25 18:17:14 -0700 | [diff] [blame] | 398 | "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 Wang | 6cac695 | 2024-05-17 17:17:22 +0000 | [diff] [blame] | 406 | "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 Wang | f4a7cb4 | 2024-05-07 15:54:00 +0000 | [diff] [blame] | 415 | "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 Yang | e8432ce | 2022-03-11 13:02:28 -0800 | [diff] [blame] | 423 | "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 Tynecki | 0efd318 | 2022-12-05 20:18:32 +0100 | [diff] [blame] | 452 | }, |
| 453 | |
| 454 | { |
| 455 | "name": "Debug Open IoT SDK example application", |
| 456 | "type": "cortex-debug", |
| 457 | "request": "launch", |
Artur Tynecki | 44c7faf | 2023-05-22 17:30:49 +0200 | [diff] [blame] | 458 | "cwd": "${workspaceRoot}/examples/${input:openiotsdkExample}/openiotsdk", |
| 459 | "executable": "./build/chip-openiotsdk-${input:openiotsdkExample}-example.elf", |
Artur Tynecki | ac16417 | 2023-05-11 19:11:59 +0200 | [diff] [blame] | 460 | "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", |
Artur Tynecki | 0efd318 | 2022-12-05 20:18:32 +0100 | [diff] [blame] | 461 | "servertype": "external", |
| 462 | "gdbTarget": "${input:openiotsdkRemoteHost}:31627", //GDBserver port on FVP |
Artur Tynecki | 4f24db4 | 2023-01-29 01:50:10 +0100 | [diff] [blame] | 463 | "overrideLaunchCommands": [ |
| 464 | "-enable-pretty-printing", |
| 465 | "add-symbol-file ./build/bl2.elf 0x10000000", |
| 466 | "add-symbol-file ./build/tfm_s.elf 0x38000400", |
Artur Tynecki | 44c7faf | 2023-05-22 17:30:49 +0200 | [diff] [blame] | 467 | "add-symbol-file ./build/chip-openiotsdk-${input:openiotsdkExample}-example_ns.elf 0x28060400", |
Artur Tynecki | 4f24db4 | 2023-01-29 01:50:10 +0100 | [diff] [blame] | 468 | "break main_ns.cpp:main" |
| 469 | ], |
Artur Tynecki | 0efd318 | 2022-12-05 20:18:32 +0100 | [diff] [blame] | 470 | "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 Tynecki | 44c7faf | 2023-05-22 17:30:49 +0200 | [diff] [blame] | 479 | "executable": "./build/${input:openiotsdkUnitTest}.elf", |
Artur Tynecki | ac16417 | 2023-05-11 19:11:59 +0200 | [diff] [blame] | 480 | "armToolchainPath": "${env:PW_ENVIRONMENT_ROOT}/cipd/packages/arm/bin/", |
Artur Tynecki | 0efd318 | 2022-12-05 20:18:32 +0100 | [diff] [blame] | 481 | "servertype": "external", |
| 482 | "gdbTarget": ":31627", //GDBserver port on FVP |
Artur Tynecki | 58699c8 | 2023-05-16 04:56:13 +0200 | [diff] [blame] | 483 | "overrideLaunchCommands": [ |
| 484 | "-enable-pretty-printing", |
| 485 | "add-symbol-file ./build/bl2.elf 0x10000000", |
| 486 | "add-symbol-file ./build/tfm_s.elf 0x38000400", |
Artur Tynecki | 44c7faf | 2023-05-22 17:30:49 +0200 | [diff] [blame] | 487 | "add-symbol-file ./build/${input:openiotsdkUnitTest}_ns.elf 0x28060400", |
Artur Tynecki | 58699c8 | 2023-05-16 04:56:13 +0200 | [diff] [blame] | 488 | "break main_ns.cpp:main" |
| 489 | ], |
Artur Tynecki | 0efd318 | 2022-12-05 20:18:32 +0100 | [diff] [blame] | 490 | "runToEntryPoint": "main", |
| 491 | "preLaunchTask": "Debug Open IoT SDK unit-tests", |
| 492 | "showDevDebugOutput": "parsed" |
Vincent Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 493 | } |
| 494 | ], |
| 495 | "inputs": [ |
| 496 | { |
Arkadiusz Bokowy | f47f95e | 2022-10-22 00:41:18 +0200 | [diff] [blame] | 497 | "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 Bokowy | 454d7d9 | 2023-08-29 20:45:34 +0200 | [diff] [blame] | 515 | "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 Coubard | cc13560 | 2021-06-29 16:58:47 +0100 | [diff] [blame] | 524 | "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 Tynecki | ec7ffd2 | 2021-10-25 19:49:17 +0200 | [diff] [blame] | 541 | "options": [ |
| 542 | "lock-app", |
| 543 | "lighting-app", |
| 544 | "pigweed-app", |
Artur Tynecki | f1b8e2c | 2021-10-27 20:40:18 +0200 | [diff] [blame] | 545 | "all-clusters-app", |
Artur Tynecki | 42a7b0a | 2022-01-26 05:46:24 +0100 | [diff] [blame] | 546 | "shell", |
| 547 | "ota-requestor-app" |
Artur Tynecki | ec7ffd2 | 2021-10-25 19:49:17 +0200 | [diff] [blame] | 548 | ], |
Artur Tynecki | 35fb13e | 2021-10-12 18:23:45 +0200 | [diff] [blame] | 549 | "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 Tynecki | 0efd318 | 2022-12-05 20:18:32 +0100 | [diff] [blame] | 557 | }, |
| 558 | { |
Artur Tynecki | 44c7faf | 2023-05-22 17:30:49 +0200 | [diff] [blame] | 559 | "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 Tynecki | 0efd318 | 2022-12-05 20:18:32 +0100 | [diff] [blame] | 566 | }, |
| 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 Tynecki | 44c7faf | 2023-05-22 17:30:49 +0200 | [diff] [blame] | 574 | "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 Sarma | c545cc5 | 2020-03-31 21:47:28 -0700 | [diff] [blame] | 581 | } |
| 582 | ] |
Rob Walker | 77fe54c | 2020-04-10 13:47:58 -0700 | [diff] [blame] | 583 | } |