This repository was archived by the owner on Sep 30, 2024. It is now read-only.
File tree 2 files changed +3
-28
lines changed
2 files changed +3
-28
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,9 @@ This is a Python application to help you create new Pico projects.
35
35
tools\openocd\openocd.exe
36
36
OpenOCD with picoprobe support. Launch from the Developer Command Prompt for
37
37
Pico using a command like this:
38
- openocd -f interface/picoprobe.cfg -f target/rp2040.cfg
38
+ openocd -f interface/cmsis-dap.cfg -f target/rp2040.cfg
39
+
40
+ You can get the latest Picoprobe binaries from https://github.com/raspberrypi/picoprobe/releases.
39
41
40
42
Uninstall
41
43
Just delete this directory. Any other software that you installed using Pico
Original file line number Diff line number Diff line change @@ -45,33 +45,6 @@ for %%i in (blink hello_world) do (
45
45
46
46
popd
47
47
48
- rem Build picoprobe and picotool
49
- rem Not building picotool currently because we need to auto-install and
50
- rem configure libusb
51
- for %%i in (picoprobe) do (
52
- set " DEST = %~dp0 %%i "
53
-
54
- if exist " !DEST! " (
55
- echo !DEST! exists, skipping clone
56
- ) else (
57
- set " REPO_URL = %GITHUB_PREFIX% %%i %GITHUB_SUFFIX% "
58
- echo Cloning !REPO_URL!
59
- git clone -b %SDK_BRANCH% !REPO_URL! || exit /b 1
60
- pushd " !DEST! "
61
- git submodule update --init || exit /b 1
62
- popd
63
- )
64
-
65
- echo Building %%i
66
- mkdir %%i \build
67
- pushd %%i \build
68
-
69
- cmake -G " NMake Makefiles" .. || exit /b 1
70
- nmake || exit /b 1
71
-
72
- popd
73
- )
74
-
75
48
if exist " %~dp0 pico-docs.ps1" (
76
49
echo Downloading Pico documents and files...
77
50
powershell -NoProfile -NonInteractive -ExecutionPolicy Bypass -File " %~dp0 pico-docs.ps1" || exit /b 1
You can’t perform that action at this time.
0 commit comments