From a239507f166e93afc9a5fe2291cb189a2b100fc8 Mon Sep 17 00:00:00 2001 From: GiungKim Date: Mon, 17 Oct 2022 13:14:06 +0900 Subject: [PATCH 1/2] Update README.md --- examples/tcp_client_over_ssl/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tcp_client_over_ssl/README.md b/examples/tcp_client_over_ssl/README.md index b1bcccd..c245ed4 100644 --- a/examples/tcp_client_over_ssl/README.md +++ b/examples/tcp_client_over_ssl/README.md @@ -170,4 +170,4 @@ Link [link-see_network_information_of_raspberry_pi_pico_connecting_to_ssl_server_and_sending_message_2]: https://github.com/Wiznet/RP2040-HAT-C/blob/main/static/images/tcp_client_over_ssl/see_network_information_of_raspberry_pi_pico_connecting_to_ssl_server_and_sending_message_2.png [link-receive_sent_message_1]: https://github.com/Wiznet/RP2040-HAT-C/blob/main/static/images/tcp_client_over_ssl/receive_sent_message_1.png [link-receive_sent_message_2]: https://github.com/Wiznet/RP2040-HAT-C/blob/main/static/images/tcp_client_over_ssl/receive_sent_message_2.png -[link-mbed_tls]: https://github.com/ARMmbed/mbedtls/tree/662deb38d61bb1fc6392c55a5134d1bd1a116118 +[link-mbed_tls]: https://github.com/Mbed-TLS/mbedtls/tree/8df2f8e7b9c7bb9390ac74bb7bace27edca81a2b From f48236e97fa03dc9a4ca516a123039de5d0f7e26 Mon Sep 17 00:00:00 2001 From: sedlons Date: Mon, 20 Feb 2023 12:50:46 +0100 Subject: [PATCH 2/2] Unstable startup fix - added gpio_init(PIN_RST) for W5x00 --- port/ioLibrary_Driver/src/w5x00_spi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/port/ioLibrary_Driver/src/w5x00_spi.c b/port/ioLibrary_Driver/src/w5x00_spi.c index 033b3a0..7b66aac 100644 --- a/port/ioLibrary_Driver/src/w5x00_spi.c +++ b/port/ioLibrary_Driver/src/w5x00_spi.c @@ -47,6 +47,7 @@ static inline void wizchip_deselect(void) void wizchip_reset() { + gpio_init(PIN_RST); gpio_set_dir(PIN_RST, GPIO_OUT); gpio_put(PIN_RST, 0);