Skip to content

Commit

Permalink
Merge pull request #93 from Eclo/fix-90
Browse files Browse the repository at this point in the history
Correct path hint
  • Loading branch information
cw2 authored Jan 27, 2017
2 parents cda41e7 + 725dd07 commit da954a2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .vscode/launch.TEMPLATE.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"request": "launch",
"miDebuggerPath": "<path-to-gdb-insie-the-gcc-toolchain-mind-the-forward-slash>",
"targetArchitecture": "ARM",
"program": "${workspaceRoot}/build/nanoBooter.hex",
"program": "<path-to-nanoBooter-ELF-file-in-the-build-folder-mind-the-forward-slash>",

"setupCommands": [
{"text": "target extended-remote localhost:3333"},
{"text": "monitor reset halt"},
{"text": "monitor flash write_image erase \"${workspaceRoot}/build/nanoBooter.hex\" "},
{"text": "file <path-to-nanoBooter-elf-file-in-the-build-folder-mind-the-forward-slash>"},
{"text": "monitor flash write_image erase \"<path-to-nanoBooter-HEX-file-in-the-build-folder-mind-the-forward-slash>\" "},
{"text": "file <path-to-nanoBooter-ELF-file-in-the-build-folder-mind-the-forward-slash>"},
{"text": "monitor reset halt"}
],

Expand All @@ -36,13 +36,13 @@
"request": "launch",
"miDebuggerPath": "<path-to-gdb-insie-the-gcc-toolchain-mind-the-forward-slash>",
"targetArchitecture": "ARM",
"program": "${workspaceRoot}/build/nanoCLR.hex",
"program": "<path-to-nanoCLR-ELF-file-in-the-build-folder-mind-the-forward-slash>",

"setupCommands": [
{"text": "target extended-remote localhost:3333"},
{"text": "monitor reset halt"},
{"text": "monitor flash write_image erase \"${workspaceRoot}/build/nanoBooter.hex\" "},
{"text": "file <path-to-nanoCLR-elf-file-in-the-build-folder-mind-the-forward-slash>"},
{"text": "monitor flash write_image erase \"<path-to-nanoCLR-HEX-file-in-the-build-folder-mind-the-forward-slash>\" "},
{"text": "file <path-to-nanoCLR-ELF-file-in-the-build-folder-mind-the-forward-slash>"},
{"text": "monitor reset halt"}
],

Expand All @@ -59,4 +59,4 @@
"cwd": "${cwd}"
}
]
}
}

0 comments on commit da954a2

Please sign in to comment.