Skip to content

Commit 6f350ff

Browse files
committed
Update RP2350 README
Add additional instructions on how to use the `picotool` instead of a JLink.
1 parent 48252aa commit 6f350ff

File tree

1 file changed

+36
-13
lines changed

1 file changed

+36
-13
lines changed

IDE/pico-sdk/rp2350/README.md

+36-13
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,22 @@ The SRAM bank0 is assigned to the Secure domain, and enforced using both SAU and
2020
- Non-secure SRAM4-7: 0x20040000 - 0x2007FFFF, 256 KB
2121
- Non-secure stack for application SRAM8-9: 0x20080000 - 0x20081FFF, 8 KB
2222

23-
```
2423

25-
### Requirements
24+
### Requirements
2625

2726
#### External debugger
2827

2928
As the two images (bootloader + application) are stored in different areas in
30-
the flash memory, a SWD connector is required to upload the binary images into
31-
the flash, as opposed to the default bootloader, allowing to upload non-signed
32-
applications into a storage device
29+
the flash memory, a SWD connector is recommended to upload the binary images
30+
into the flash, as opposed to the default bootloader, allowing to upload
31+
non-signed applications into a storage device.
32+
33+
The scripts used in this example expect a JLink to be connected to the SWD port
34+
as documented [here](https://kb.segger.com/Raspberry_Pi_Pico).
35+
36+
There is documentation below on how to do this with `picotool` instead, the
37+
scripts to error that it cannot file the JLink if you wish to use `picotool`
38+
instead, but this can be ignored.
3339

3440
#### PicoSDK
3541

@@ -71,7 +77,7 @@ The environment has now been prepared to build and flash the two images
7177
### Building and uploading wolfBoot.bin
7278

7379
After preparing the configuration and creating the keypair,
74-
return to this directory and run:
80+
return to the `IDE/pico-sdk/rp2350/` directory and run:
7581

7682
```
7783
cd wolfboot
@@ -84,13 +90,20 @@ This version of wolfboot incorporates the `.boot2` sequence needed to enable
8490
the QSPI device, provided by the pico-sdk and always embedded in all
8591
applications.
8692

87-
wolfboot.bin contains the bootloader, and can be loaded into the RP2350, starting at address 0x10000000.
88-
The script will automatically upload the binary if a JLink debugger is connected.
93+
wolfboot.bin contains the bootloader, and can be loaded into the RP2350,
94+
starting at address 0x10000000. The script will automatically upload the binary
95+
if a JLink debugger is connected.
96+
97+
If you do not have a JLink you can install the binary using:
98+
99+
```
100+
picotool load build/wolfboot.uf2
101+
```
89102

90103
### Building and uploading the application
91104

92105
```
93-
cd test-app
106+
cd ../test-app
94107
./build-signed-app.sh
95108
```
96109
The script above will compile the test application and sign it with the
@@ -104,10 +117,19 @@ taking into account the wolfBoot header size.
104117
The application is signed with the wolfBoot private key, and the signature is
105118
stored in the manifest header of the application binary.
106119

107-
The output file `build/blink_v1_signed.bin` is automatically uploaded to the RP2350 if a JLink debugger is connected.
108-
The application image is stored in the boot partition, starting at address 0x10040000.
109-
The entry point of the application (0x10040400), set in the linker script `hal/rp2350-app.ld`, is the start of the application code, taking into account the wolfBoot header size.
120+
The output file `build/blink_v1_signed.bin` is automatically uploaded to the
121+
RP2350 if a JLink debugger is connected.
122+
The application image is stored in the boot partition, starting at address
123+
0x10040000.
124+
The entry point of the application (0x10040400), set in the linker script
125+
`hal/rp2350-app.ld`, is the start of the application code, taking into account
126+
the wolfBoot header size.
127+
128+
To use `picotool` instead run:
110129

130+
```
131+
picotool load build/blink_v1_signed.bin -o 0x10040000
132+
```
111133

112134
### Testing the application
113135

@@ -116,5 +138,6 @@ every 500ms.
116138

117139
If the above steps are successful, the LED on the board should start blinking.
118140

119-
The code has been tested on a Seeed studio XIAO RP2350 board.
141+
The code has been tested on a Seeed studio XIAO RP2350 board and a Raspberry Pi
142+
Pico 2 (non-WiFi version).
120143

0 commit comments

Comments
 (0)