mcauser / BLACK_F407VE

MicroPython board definition for the MCUDev Black STM32F407VET6 board
MIT License
122 stars 47 forks source link

Ethernet Problem #16

Open e135193 opened 2 years ago

e135193 commented 2 years ago

Hello @mcauser Thanks for the driver I have compiled with your code. However I could not run the ethernet interface

import network
lan = network.LAN()
lan.active(True)

After I run the code I get the error below.

MicroPython v1.18-602-gf63b4f85a on 2022-06-10; MCUDEV STM32F407VE with STM32F407VE
Type "help()" for more information.
>>> import network
>>> lan = network.LAN()
>>> lan.active(True)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OSError: [Errno 110] ETIMEDOUT
>>>