Skip to content

Commit e6b6f30

Browse files
committed
Add W55RP20
1 parent d5c5bfe commit e6b6f30

File tree

20 files changed

+842
-83
lines changed

20 files changed

+842
-83
lines changed

CMakeLists.txt

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,30 @@ set(CMAKE_CXX_STANDARD 17)
2323
# Initialize the SDK
2424
pico_sdk_init()
2525

26-
# Set ethernet chip
27-
set(WIZNET_CHIP W5100S)
28-
29-
if(${WIZNET_CHIP} STREQUAL W5100S)
26+
# Set board
27+
#set(BOARD_NAME WIZnet_Ethernet_HAT)
28+
#set(BOARD_NAME W5100S_EVB_PICO)
29+
#set(BOARD_NAME W5500_EVB_PICO)
30+
set(BOARD_NAME W55RP20_EVB_PICO)
31+
32+
if(${BOARD_NAME} STREQUAL WIZnet_Ethernet_HAT)
33+
set(WIZNET_CHIP W5100S)
34+
add_definitions(-D_WIZCHIP_=W5100S)
35+
add_definitions(-DDEVICE_BOARD_NAME=WIZnet_Ethernet_HAT)
36+
elseif(${BOARD_NAME} STREQUAL W5100S_EVB_PICO)
37+
set(WIZNET_CHIP W5100S)
3038
add_definitions(-D_WIZCHIP_=W5100S)
31-
elseif(${WIZNET_CHIP} STREQUAL W5500)
39+
add_definitions(-DDEVICE_BOARD_NAME=W5100S_EVB_PICO)
40+
elseif(${BOARD_NAME} STREQUAL W5500_EVB_PICO)
41+
set(WIZNET_CHIP W5500)
42+
add_definitions(-D_WIZCHIP_=W5500)
43+
add_definitions(-DDEVICE_BOARD_NAME=W5500_EVB_PICO)
44+
elseif(${BOARD_NAME} STREQUAL W55RP20_EVB_PICO)
45+
set(WIZNET_CHIP W5500)
3246
add_definitions(-D_WIZCHIP_=W5500)
33-
else()
34-
message(FATAL_ERROR "WIZNET_CHIP is wrong = ${WIZNET_CHIP}")
47+
add_definitions(-DDEVICE_BOARD_NAME=W55RP20_EVB_PICO)
48+
else()
49+
message(FATAL_ERROR "BOARD_NAME is wrong = ${BOARD_NAME}")
3550
endif()
3651

3752
message(STATUS "WIZNET_CHIP = ${WIZNET_CHIP}")

examples/dhcp_dns/README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ The following serial terminal program is required for DHCP & DNS example test, d
1212

1313
## Step 2: Prepare hardware
1414

15-
If you are using W5100S-EVB-Pico or W5500-EVB-Pico, you can skip '1. Combine...'
15+
If you are using W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico, you can skip '1. Combine...'
1616

1717
1. Combine WIZnet Ethernet HAT with Raspberry Pi Pico.
1818

19-
2. Connect ethernet cable to WIZnet Ethernet HAT, W5100S-EVB-Pico or W5500-EVB-Pico ethernet port.
19+
2. Connect ethernet cable to WIZnet Ethernet HAT, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico ethernet port.
2020

21-
3. Connect Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico to desktop or laptop using 5 pin micro USB cable.
21+
3. Connect Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico to desktop or laptop using 5 pin micro USB cable. W55RP20-EVB-Pico requires a USB Type-C cable.
2222

2323

2424

@@ -29,6 +29,7 @@ To test the DHCP & DNS example, minor settings shall be done in code.
2929
1. Setup SPI port and pin in 'w5x00_spi.h' in 'RP2040-HAT-C/port/ioLibrary_Driver/' directory.
3030

3131
Setup the SPI interface you use.
32+
- If you use the W5100S-EVB-Pico or W5500-EVB-Pico,
3233

3334
```cpp
3435
/* SPI */
@@ -47,6 +48,17 @@ If you want to test with the DHCP & DNS example using SPI DMA, uncomment USE_SPI
4748
/* Use SPI DMA */
4849
//#define USE_SPI_DMA // if you want to use SPI DMA, uncomment.
4950
```
51+
- If you use the W55RP20-EVB-Pico,
52+
```cpp
53+
/* SPI */
54+
#define USE_SPI_PIO
55+
56+
#define PIN_SCK 21
57+
#define PIN_MOSI 23
58+
#define PIN_MISO 22
59+
#define PIN_CS 20
60+
#define PIN_RST 25
61+
```
5062
5163
2. Setup network configuration such as IP in 'w5x00_dhcp_dns.c', which is the DHCP & DNS example in 'RP2040-HAT-C/examples/dhcp_dns/' directory.
5264
@@ -86,19 +98,19 @@ static uint8_t g_dns_target_domain[] = "www.wiznet.io";
8698

8799
## Step 5: Upload and Run
88100

89-
1. While pressing the BOOTSEL button of Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico power on the board, the USB mass storage 'RPI-RP2' is automatically mounted.
101+
1. While pressing the BOOTSEL button of Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico power on the board, the USB mass storage 'RPI-RP2' is automatically mounted.
90102

91103
![][link-raspberry_pi_pico_usb_mass_storage]
92104

93105
2. Drag and drop 'w5x00_dhcp_dns.uf2' onto the USB mass storage device 'RPI-RP2'.
94106

95-
3. Connect to the serial COM port of Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico with Tera Term.
107+
3. Connect to the serial COM port of Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico with Tera Term.
96108

97109
![][link-connect_to_serial_com_port]
98110

99111
4. Reset your board.
100112

101-
5. If the DHCP & DNS example works normally on Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico, you can see the network information, IP automatically assigned by DHCP of Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico and the IP get from the domain name.
113+
5. If the DHCP & DNS example works normally on Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico, you can see the network information, IP automatically assigned by DHCP of Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico and the IP get from the domain name.
102114

103115
![][link-see_network_information_ip_assigned_by_dhcp_of_raspberry_pi_pico_and_get_ip_through_dns]
104116

examples/ftp/client/README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ The following serial terminal program and FTP server are required for FTP Client
1313

1414
## Step 2: Prepare hardware
1515

16-
If you are using W5100S-EVB-Pico or W5500-EVB-Pico, you can skip '1. Combine...'
16+
If you are using W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico, you can skip '1. Combine...'
1717

1818
1. Combine WIZnet Ethernet HAT with Raspberry Pi Pico.
1919

20-
2. Connect ethernet cable to WIZnet Ethernet HAT, W5100S-EVB-Pico or W5500-EVB-Pico ethernet port.
20+
2. Connect ethernet cable to WIZnet Ethernet HAT, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico ethernet port.
2121

22-
3. Connect Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico to desktop or laptop using 5 pin micro USB cable.
22+
3. Connect Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico to desktop or laptop using 5 pin micro USB cable. W55RP20-EVB-Pico requires a USB Type-C cable.
2323

2424

2525

@@ -30,6 +30,7 @@ To test the FTP Client example, minor settings shall be done in code.
3030
1. Setup SPI port and pin in 'w5x00_spi.h' in 'RP2040-HAT-C/port/ioLibrary_Driver/' directory.
3131

3232
Setup the SPI interface you use.
33+
- If you use the W5100S-EVB-Pico or W5500-EVB-Pico,
3334

3435
```cpp
3536
/* SPI */
@@ -48,6 +49,17 @@ If you want to test with the ftp_client example using SPI DMA, uncomment USE_SPI
4849
/* Use SPI DMA */
4950
//#define USE_SPI_DMA // if you want to use SPI DMA, uncomment.
5051
```
52+
- If you use the W55RP20-EVB-Pico,
53+
```cpp
54+
/* SPI */
55+
#define USE_SPI_PIO
56+
57+
#define PIN_SCK 21
58+
#define PIN_MOSI 23
59+
#define PIN_MISO 22
60+
#define PIN_CS 20
61+
#define PIN_RST 25
62+
```
5163
5264
2. Setup network configuration such as IP in 'w5x00_ftp_client.c' which is the FTP Client example in 'RP2040-HAT-C/examples/ftp/client/' directory.
5365
@@ -105,19 +117,19 @@ uint16_t FTP_destport = 21; // For FTP client examples; dest
105117
106118
## Step 6: Upload and Run
107119
108-
1. While pressing the BOOTSEL button of Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico power on the board, the USB mass storage 'RPI-RP2' is automatically mounted.
120+
1. While pressing the BOOTSEL button of Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico power on the board, the USB mass storage 'RPI-RP2' is automatically mounted.
109121
110122
![][link-raspberry_pi_pico_usb_mass_storage]
111123
112124
2. Drag and drop 'w5x00_ftp_client.uf2' onto the USB mass storage device 'RPI-RP2'.
113125
114-
3. Connect to the serial COM port of Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico with Tera Term.
126+
3. Connect to the serial COM port of Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico with Tera Term.
115127
116128
![][link-connect_to_serial_com_port]
117129
118130
4. Reset your board.
119131
120-
5. If the FTP Clinet example works normally on Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico, you can see the network information of Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico and the FileZilla web site URL.
132+
5. If the FTP Clinet example works normally on Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico, you can see the network information of Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico and the FileZilla web site URL.
121133
122134
![][link-see_network_information_of_raspberry_pi_pico]
123135

examples/ftp/server/README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ The following serial terminal program and FTP client are required for FTP Server
1313

1414
## Step 2: Prepare hardware
1515

16-
If you are using W5100S-EVB-Pico or W5500-EVB-Pico, you can skip '1. Combine...'
16+
If you are using W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico, you can skip '1. Combine...'
1717

1818
1. Combine WIZnet Ethernet HAT with Raspberry Pi Pico.
1919

20-
2. Connect ethernet cable to WIZnet Ethernet HAT, W5100S-EVB-Pico or W5500-EVB-Pico ethernet port.
20+
2. Connect ethernet cable to WIZnet Ethernet HAT, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico ethernet port.
2121

22-
3. Connect Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico to desktop or laptop using 5 pin micro USB cable.
22+
3. Connect Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico to desktop or laptop using 5 pin micro USB cable. W55RP20-EVB-Pico requires a USB Type-C cable.
2323

2424

2525

@@ -30,6 +30,7 @@ To test the FTP Server example, minor settings shall be done in code.
3030
1. Setup SPI port and pin in 'w5x00_spi.h' in 'RP2040-HAT-C/port/ioLibrary_Driver/' directory.
3131

3232
Setup the SPI interface you use.
33+
- If you use the W5100S-EVB-Pico or W5500-EVB-Pico,
3334

3435
```cpp
3536
/* SPI */
@@ -48,6 +49,17 @@ If you want to test with the FTP Server example using SPI DMA, uncomment USE_SPI
4849
/* Use SPI DMA */
4950
//#define USE_SPI_DMA // if you want to use SPI DMA, uncomment.
5051
```
52+
- If you use the W55RP20-EVB-Pico,
53+
```cpp
54+
/* SPI */
55+
#define USE_SPI_PIO
56+
57+
#define PIN_SCK 21
58+
#define PIN_MOSI 23
59+
#define PIN_MISO 22
60+
#define PIN_CS 20
61+
#define PIN_RST 25
62+
```
5163
5264
2. Setup network configuration such as IP in 'w5x00_ftp_server.c' which is the FTP Server example in 'RP2040-HAT-C/examples/ftp/server/' directory.
5365
@@ -78,19 +90,19 @@ static wiz_NetInfo g_net_info =
7890

7991
## Step 5: Upload and Run
8092

81-
1. While pressing the BOOTSEL button of Raspberry Pi Pico, W5100S-EVB-Pico power or W5500-EVB-Pico on the board, the USB mass storage 'RPI-RP2' is automatically mounted.
93+
1. While pressing the BOOTSEL button of Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico power on the board, the USB mass storage 'RPI-RP2' is automatically mounted.
8294

8395
![][link-raspberry_pi_pico_usb_mass_storage]
8496

8597
2. Drag and drop 'w5x00_ftp_server.uf2' onto the USB mass storage device 'RPI-RP2'.
8698

87-
3. Connect to the serial COM port of Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico with Tera Term.
99+
3. Connect to the serial COM port of Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico with Tera Term.
88100

89101
![][link-connect_to_serial_com_port]
90102

91103
4. Reset your board.
92104

93-
5. If the FTP Server example works normally on Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico, you can see the network information of Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico and the FTP server is open.
105+
5. If the FTP Server example works normally on Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico, you can see the network information of Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico and the FTP server is open.
94106

95107
![][link-see_network_information_of_raspberry_pi_pico_and_open_ftp_server]
96108

examples/http/server/README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ The following serial terminal program is required for HTTP Server example test,
1212

1313
## Step 2: Prepare hardware
1414

15-
If you are using W5100S-EVB-Pico or W5500-EVB-Pico, you can skip '1. Combine...'
15+
If you are using W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico, you can skip '1. Combine...'
1616

1717
1. Combine WIZnet Ethernet HAT with Raspberry Pi Pico.
1818

19-
2. Connect ethernet cable to WIZnet Ethernet HAT, W5100S-EVB-Pico or W5500-EVB-Pico ethernet port.
19+
2. Connect ethernet cable to WIZnet Ethernet HAT, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico ethernet port.
2020

21-
3. Connect Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico to desktop or laptop using 5 pin micro USB cable.
21+
3. Connect Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico to desktop or laptop using 5 pin micro USB cable. W55RP20-EVB-Pico requires a USB Type-C cable.
2222

2323

2424

@@ -29,6 +29,7 @@ To test the HTTP Server example, minor settings shall be done in code.
2929
1. Setup SPI port and pin in 'w5x00_spi.h' in 'RP2040-HAT-C/port/ioLibrary_Driver/' directory.
3030

3131
Setup the SPI interface you use.
32+
- If you use the W5100S-EVB-Pico or W5500-EVB-Pico,
3233

3334
```cpp
3435
/* SPI */
@@ -47,6 +48,17 @@ If you want to test with the HTTP Server example using SPI DMA, uncomment USE_SP
4748
/* Use SPI DMA */
4849
//#define USE_SPI_DMA // if you want to use SPI DMA, uncomment.
4950
```
51+
- If you use the W55RP20-EVB-Pico,
52+
```cpp
53+
/* SPI */
54+
#define USE_SPI_PIO
55+
56+
#define PIN_SCK 21
57+
#define PIN_MOSI 23
58+
#define PIN_MISO 22
59+
#define PIN_CS 20
60+
#define PIN_RST 25
61+
```
5062
5163
2. Setup network configuration such as IP in 'w5x00_http_server.c' which is the HTTP Server example in 'RP2040-HAT-C/examples/http/server/' directory.
5264
@@ -77,19 +89,19 @@ static wiz_NetInfo g_net_info =
7789

7890
## Step 5: Upload and Run
7991

80-
1. While pressing the BOOTSEL button of Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico power on the board, the USB mass storage 'RPI-RP2' is automatically mounted.
92+
1. While pressing the BOOTSEL button of Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico power on the board, the USB mass storage 'RPI-RP2' is automatically mounted.
8193

8294
![][link-raspberry_pi_pico_usb_mass_storage]
8395

8496
2. Drag and drop 'w5x00_http_server.uf2' onto the USB mass storage device 'RPI-RP2'.
8597

86-
3. Connect to the serial COM port of Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico with Tera Term.
98+
3. Connect to the serial COM port of Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico with Tera Term.
8799

88100
![][link-connect_to_serial_com_port]
89101

90102
4. Reset your board.
91103

92-
5. If the HTTP Server example works normally on Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico, you can see the network information of Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico and the HTTP server is open.
104+
5. If the HTTP Server example works normally on Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico, you can see the network information of Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico and the HTTP server is open.
93105

94106
![][link-see_network_information_of_raspberry_pi_pico_and_open_http_server]
95107

examples/loopback/README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ The following serial terminal programs are required for Loopback example test, d
1313

1414
## Step 2: Prepare hardware
1515

16-
If you are using W5100S-EVB-Pico or W5500-EVB-Pico, you can skip '1. Combine...'
16+
If you are using W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico, you can skip '1. Combine...'
1717

1818
1. Combine WIZnet Ethernet HAT with Raspberry Pi Pico.
1919

20-
2. Connect ethernet cable to WIZnet Ethernet HAT, W5100S-EVB-Pico or W5500-EVB-Pico ethernet port.
20+
2. Connect ethernet cable to WIZnet Ethernet HAT, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico ethernet port.
2121

22-
3. Connect Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico to desktop or laptop using 5 pin micro USB cable.
22+
3. Connect Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico to desktop or laptop using 5 pin micro USB cable. W55RP20-EVB-Pico requires a USB Type-C cable.
2323

2424

2525

@@ -30,6 +30,7 @@ To test the Loopback example, minor settings shall be done in code.
3030
1. Setup SPI port and pin in 'w5x00_spi.h' in 'RP2040-HAT-C/port/ioLibrary_Driver/' directory.
3131

3232
Setup the SPI interface you use.
33+
- If you use the W5100S-EVB-Pico or W5500-EVB-Pico,
3334

3435
```cpp
3536
/* SPI */
@@ -48,6 +49,17 @@ If you want to test with the Loopback example using SPI DMA, uncomment USE_SPI_D
4849
/* Use SPI DMA */
4950
//#define USE_SPI_DMA // if you want to use SPI DMA, uncomment.
5051
```
52+
- If you use the W55RP20-EVB-Pico,
53+
```cpp
54+
/* SPI */
55+
#define USE_SPI_PIO
56+
57+
#define PIN_SCK 21
58+
#define PIN_MOSI 23
59+
#define PIN_MISO 22
60+
#define PIN_CS 20
61+
#define PIN_RST 25
62+
```
5163
5264
2. Setup network configuration such as IP in 'w5x00_loopback.c' which is the Loopback example in 'RP2040-HAT-C/examples/loopback/' directory.
5365
@@ -85,19 +97,19 @@ static wiz_NetInfo g_net_info =
8597
8698
## Step 5: Upload and Run
8799
88-
1. While pressing the BOOTSEL button of Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico power on the board, the USB mass storage 'RPI-RP2' is automatically mounted.
100+
1. While pressing the BOOTSEL button of Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico power on the board, the USB mass storage 'RPI-RP2' is automatically mounted.
89101
90102
![][link-raspberry_pi_pico_usb_mass_storage]
91103
92104
2. Drag and drop 'w5x00_loopback.uf2' onto the USB mass storage device 'RPI-RP2'.
93105
94-
3. Connect to the serial COM port of Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico with Tera Term.
106+
3. Connect to the serial COM port of Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico with Tera Term.
95107
96108
![][link-connect_to_serial_com_port]
97109
98110
4. Reset your board.
99111
100-
5. If the Loopback example works normally on Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico, you can see the network information of Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico and the loopback server is open.
112+
5. If the Loopback example works normally on Raspberry Pi Pico, W5100S-EVB-Pico, W5500-EVB-Pico or W55RP20-EVB-Pico, you can see the network information of Raspberry Pi Pico, W5100S-EVB-Pico or W5500-EVB-Pico and the loopback server is open.
101113
102114
![][link-see_network_information_of_raspberry_pi_pico_and_open_loopback_server]
103115

0 commit comments

Comments
 (0)