You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
33
39
34
40
#### PicoSDK
35
41
@@ -71,7 +77,7 @@ The environment has now been prepared to build and flash the two images
71
77
### Building and uploading wolfBoot.bin
72
78
73
79
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:
75
81
76
82
```
77
83
cd wolfboot
@@ -84,13 +90,20 @@ This version of wolfboot incorporates the `.boot2` sequence needed to enable
84
90
the QSPI device, provided by the pico-sdk and always embedded in all
85
91
applications.
86
92
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
+
```
89
102
90
103
### Building and uploading the application
91
104
92
105
```
93
-
cd test-app
106
+
cd ../test-app
94
107
./build-signed-app.sh
95
108
```
96
109
The script above will compile the test application and sign it with the
@@ -104,10 +117,19 @@ taking into account the wolfBoot header size.
104
117
The application is signed with the wolfBoot private key, and the signature is
105
118
stored in the manifest header of the application binary.
106
119
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
0 commit comments