From 2427937081eb8cc1af681cc9b9c63789edb94877 Mon Sep 17 00:00:00 2001 From: JackCarterSmith Date: Sat, 4 Mar 2023 09:01:59 +0100 Subject: [PATCH] PicoProbe launch settings fix --- .vscode/launch.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index b6006d5..4afb06d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -28,10 +28,10 @@ // This may need to be arm-none-eabi-gdb depending on your system "gdbPath" : "${env:PICO_GDB}", "device": "RP2040", - "configFiles": [ - "interface/cmsis-dap.cfg", - "target/rp2040.cfg" + "openOCDLaunchCommands": [ + "adapter speed 5000" ], + "configFiles": ["interface/picoprobe.cfg","target/rp2040.cfg"], "svdFile": "${env:PICO_SDK_PATH}/src/rp2040/hardware_regs/rp2040.svd", // Work around for stopping at main on restart "runToEntryPoint": "main"