WIZNET5K usage in ESP32 port

All ESP32 boards running MicroPython.
Target audience: MicroPython users with an ESP32 board.
Post Reply
kurt
Posts: 20
Joined: Sun Feb 11, 2018 7:45 pm

WIZNET5K usage in ESP32 port

Post by kurt » Tue Jan 22, 2019 6:42 pm

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

kurt
Posts: 20
Joined: Sun Feb 11, 2018 7:45 pm

Re: WIZNET5K usage in ESP32 port

Post by kurt » Thu Jan 31, 2019 1:33 pm


Post Reply