source: azure_iot_hub_f767zi/trunk/app_iothub_client/.vscode/launch.json@ 457

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

ファイルを追加

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