source: azure_iot_hub_f767zi/trunk/asp_baseplatform/.vscode/launch.json@ 466

Last change on this file since 466 was 466, checked in by coas-nagasima, 3 years ago

GCCを最新版に更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/json;charset=UTF-8
File size: 1.3 KB
RevLine 
[457]1{
2 "version": "0.2.0",
3 "configurations": [
4 {
5 "name": "Cortex Debug",
[466]6 "armToolchainPath": "C:\\Program Files (x86)\\GNU Arm Embedded Toolchain\\10 2020-q4-major\\bin",
[465]7 "serverpath": "C:\\xpack-openocd-0.11.0-1\\bin\\openocd.exe",
[457]8 "cwd": "${workspaceFolder}\\OBJ\\STM32F767NUCLEO144_GCC\\MAC",
9 "executable": "${workspaceFolder}\\OBJ\\STM32F767NUCLEO144_GCC\\MAC\\asp.exe",
10 "request": "launch",
11 "type": "cortex-debug",
12 "servertype": "openocd",
[465]13 "device": "STM32F767ZI",
14 "interface": "swd",
15 "svdFile": "${workspaceFolder}\\..\\STM32F7x7.svd",
[457]16 "configFiles": [
[465]17 "board/st_nucleo_f7.cfg"
[457]18 ],
19 "openOCDLaunchCommands": [
[466]20 "gdb_breakpoint_override hard",
21 "gdb_memory_map disable"
[457]22 ],
[465]23 "preLaunchCommands": [
24 "-environment-cd ${workspaceRoot}/Debug",
25 "-gdb-set breakpoint pending on",
26 "monitor reset init",
27 "monitor halt",
28 "monitor arm semihosting enable",
29 "load ${workspaceFolderBasename}.elf",
30 "enable breakpoint"
31 ],
[457]32 "preLaunchTask": "build asp_baseplatform"
33 }
34 ]
35}
Note: See TracBrowser for help on using the repository browser.