Alexander
Alexander
Many thanks! Your fork is working! So far only tested on Linux ```python if platform == "linux": config["client_id"]="linux" ```
Debugged for Linux. Everything is working. Transferred to the board ESP32. The wired lan and webrepl works. The MQTT does not start. ```python def mqtt_callback(topic, msg, retained): # if topic.startswith(b'dali/'):...
  Later I will watch the Wireshark tcp exchange ...
ntptime works ``` print(ntptime.time()) await asyncio.sleep(5) 671432518 671432523 671432528 671432533 ``` this works too ```python async def echo(reader, writer): data = await reader.read(100) print(data) writer.write(data) await writer.drain() writer.close() async def...
Ok, I'll try. I did not turn on the wireless interface. boot.py ```python import esp esp.osdebug(None) import webrepl import machine import network lan = network.LAN(mdc=machine.Pin(23), mdio=machine.Pin(18), power=machine.Pin(16), phy_type=network.PHY_LAN8720, phy_addr=1, clock_mode=network.ETH_CLOCK_GPIO0_IN)...
```python import esp esp.osdebug(None) import webrepl import machine import network wlan = network.WLAN(network.STA_IF) ap = network.WLAN(network.AP_IF) wlan.active(False) ap.active(False) lan = network.LAN(mdc=machine.Pin(23), mdio=machine.Pin(18), power=machine.Pin(16), phy_type=network.PHY_LAN8720, phy_addr=1, clock_mode=network.ETH_CLOCK_GPIO0_IN) lan.active(True) lan.ifconfig(('192.168.1.34', '255.255.255.0', '192.168.1.1',...
TCP client works without problems ```python async def tcp_echo_client(): reader, writer = await asyncio.open_connection('192.168.1.107', 8888) writer.write(b'test') await writer.drain() data = await reader.read(100) print(data) writer.close() await writer.wait_closed() async def main(): await...
if the platform is forcibly specified, it starts working, but with errors 

TCP socket works 