Merge pull request #3708 from lonesometraveler/fix_broken_link

Fix broken link to WIZnet W5500-EVB-Pico
This commit is contained in:
Dario Nieuwenhuis 2025-01-02 17:01:34 +01:00 committed by GitHub
commit d58c7f6047
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
//! This example shows how you can allow multiple simultaneous TCP connections, by having multiple sockets listening on the same port. //! This example shows how you can allow multiple simultaneous TCP connections, by having multiple sockets listening on the same port.
//! //!
//! Example written for the [`WIZnet W5500-EVB-Pico`](https://www.wiznet.io/product-item/w5500-evb-pico/) board. //! Example written for the [`WIZnet W5500-EVB-Pico`](https://docs.wiznet.io/Product/iEthernet/W5500/w5500-evb-pico) board.
#![no_std] #![no_std]
#![no_main] #![no_main]

View File

@ -1,6 +1,6 @@
//! This example implements a TCP client that attempts to connect to a host on port 1234 and send it some data once per second. //! This example implements a TCP client that attempts to connect to a host on port 1234 and send it some data once per second.
//! //!
//! Example written for the [`WIZnet W5500-EVB-Pico`](https://www.wiznet.io/product-item/w5500-evb-pico/) board. //! Example written for the [`WIZnet W5500-EVB-Pico`](https://docs.wiznet.io/Product/iEthernet/W5500/w5500-evb-pico) board.
#![no_std] #![no_std]
#![no_main] #![no_main]

View File

@ -1,7 +1,7 @@
//! This example implements a TCP echo server on port 1234 and using DHCP. //! This example implements a TCP echo server on port 1234 and using DHCP.
//! Send it some data, you should see it echoed back and printed in the console. //! Send it some data, you should see it echoed back and printed in the console.
//! //!
//! Example written for the [`WIZnet W5500-EVB-Pico`](https://www.wiznet.io/product-item/w5500-evb-pico/) board. //! Example written for the [`WIZnet W5500-EVB-Pico`](https://docs.wiznet.io/Product/iEthernet/W5500/w5500-evb-pico) board.
#![no_std] #![no_std]
#![no_main] #![no_main]

View File

@ -1,6 +1,6 @@
//! This example implements a UDP server listening on port 1234 and echoing back the data. //! This example implements a UDP server listening on port 1234 and echoing back the data.
//! //!
//! Example written for the [`WIZnet W5500-EVB-Pico`](https://www.wiznet.io/product-item/w5500-evb-pico/) board. //! Example written for the [`WIZnet W5500-EVB-Pico`](https://docs.wiznet.io/Product/iEthernet/W5500/w5500-evb-pico) board.
#![no_std] #![no_std]
#![no_main] #![no_main]