From 75d2fb4470fa562446da75b1286f4b504b696c3b Mon Sep 17 00:00:00 2001 From: fef Date: Tue, 10 Aug 2021 22:09:40 +0200 Subject: [PATCH] vscode: fix debug config file location --- .vscode/launch.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index c52e44d..5181491 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,12 +9,12 @@ "type": "cortex-debug", "servertype": "openocd", "configFiles": [ - "${workspaceRoot}/arch/at91sam3x8e/openocd.cfg" + "${workspaceRoot}/arch/at91sam3x8e/config/openocd.cfg" ], "device": "AT91SAM3X8E", "runToMain": false, "gdbPath": "/usr/bin/arm-none-eabi-gdb", - "svdFile": "${workspaceRoot}/arch/at91sam3x8e/SAM3X8E.svd" + "svdFile": "${workspaceRoot}/arch/at91sam3x8e/config/SAM3X8E.svd" } ] }