From b6f38f0335d12206db46099a1d894cf1c1b0de15 Mon Sep 17 00:00:00 2001 From: Kevin Thomas Date: Fri, 12 Sep 2025 09:28:00 -0700 Subject: [PATCH] Delete openocd.ps1 --- openocd.ps1 | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 openocd.ps1 diff --git a/openocd.ps1 b/openocd.ps1 deleted file mode 100644 index b4d0b56..0000000 --- a/openocd.ps1 +++ /dev/null @@ -1,14 +0,0 @@ -# store the current location -$originalLocation = Get-Location - -try { - # change the location to the OpenOCD scripts directory - Set-Location -Path "C:\Program Files\Raspberry Pi\Pico SDK v1.5.0\openocd\scripts" - - # run OpenOCD - ../openocd -f interface/cmsis-dap.cfg -f target/rp2040.cfg -c "adapter speed 5000" -} -finally { - # return to the original location - Set-Location -Path $originalLocation -}