Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Unstable startup fix - added gpio_init(PIN_RST) for W5x00 #18

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/tcp_client_over_ssl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 1 addition & 0 deletions port/ioLibrary_Driver/src/w5x00_spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down