We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66a077c commit f7a3709Copy full SHA for f7a3709
step-7-webserver/pico-w5500/Makefile
@@ -36,7 +36,7 @@ test: update
36
grep 'Ethernet: up' /tmp/output.txt
37
38
update: build
39
- curl --fail -su :$(VCON_API_KEY) $(DEVICE_URL)/ota?uf2=1 --data-binary @firmware.uf2
+ curl --fail -su :$(VCON_API_KEY) $(DEVICE_URL)/ota --data-binary @firmware.bin
40
41
clean:
42
$(RM) firmware.* bin2uf2
step-7-webserver/pico-w5500/link.ld
@@ -12,6 +12,8 @@ SECTIONS {
12
13
.boot : ALIGN(4) {
14
KEEP(*(.boot))
15
+ . = 256 - 4;
16
+ LONG(0xcccccccc) /* RP2040 expects CRC in the last 4 bytes of this block */
17
} > boot
18
19
.text : ALIGN(4) {
0 commit comments