Subversion Repositories EDIS_Ignition

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  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.         {
  8.             "cwd": "${workspaceFolder}",
  9.             "executable": "${workspaceRoot}\\build\\EDIS_Ignition.elf",
  10.             "name": "CMSIS-DAP DEBUGGING ",
  11.             "request": "launch",
  12.             "type": "cortex-debug",
  13.             "servertype": "openocd",
  14.              "serverpath" : "C:\\Users\\mike\\AppData\\Roaming\\xPacks\\@gnu-mcu-eclipse\\openocd\\0.10.0-12.1\\.content\\bin\\openocd.exe",
  15.             "armToolchainPath": "${config:arm-none-eabi.bin}",
  16.             "interface": "cmsis-dap",
  17.             "svdFile": "${workspaceRoot}\\stm32f103.svd",
  18.             "runToEntryPoint": "main",
  19.             "configFiles": [
  20.                 "interface\\cmsis-dap.cfg",
  21.                 "target\\stm32f1x.cfg"
  22.                 ],
  23.             "debuggerArgs": [],
  24.             "preRestartCommands": [
  25.                 "load",
  26.                 "enable breakpoint",
  27.                 "monitor reset"
  28.             ],
  29.             "showDevDebugOutput": true,
  30.         }
  31.     ]
  32. }