Page 1 of 1

WIZNET5K usage in ESP32 port

Posted: Tue Jan 22, 2019 6:42 pm
by kurt
Hi,
bought a WIZNET5K W5500 board. How can I include it in a build for esp32?
Many thanks for any hint.
Kurt

I did the following:
- modified in wizchip_conf.h parameter: #define _WIZCHIP_ 5200 to #define _WIZCHIP_ 5500
- modified Makefile from:
DRIVERS_SRC_C = $(addprefix drivers/,\
bus/softspi.c \
dht/dht.c \
)
to
DRIVERS_SRC_C = $(addprefix drivers/,\
bus/softspi.c \
dht/dht.c \
wiznet5k/ethernet/wizchip_conf.c \
)
also to
DRIVERS_SRC_C = $(addprefix drivers/,\
bus/softspi.c \
dht/dht.c \
wiznet5k/ethernet/w5500/w5500.c \
)
Both time make runs without any error. But after flashing there was no W5000 or WIZNET5K to find doing import network as described in https://docs.micropython.org/en/latest/ ... NET5K.html

Any hint or tip is highly welcome what to do to get WIZNET5K available.

Many thanks
Kurt

Re: WIZNET5K usage in ESP32 port

Posted: Thu Jan 31, 2019 1:33 pm
by kurt