Skip to content

Instantly share code, notes, and snippets.

View davidtibbetts's full-sized avatar

David Tibbetts davidtibbetts

  • Chicago
View GitHub Profile
@davidtibbetts
davidtibbetts / launch.json
Created March 5, 2018 22:16
Launch JSON for VSCode w/ OpenOCD and GDB debugging.
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "cppdbg",
@davidtibbetts
davidtibbetts / tasks.json
Last active July 28, 2021 04:47
OpenOCD launch for VSCode
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"options": {
"env": {
"OPENOCD_SCRIPTS": "${workspaceRoot}\\..\\OpenOCD-20170609\\share\\openocd\\scripts"
}
},
"tasks": [