loboris, impressive and great work
wanted to ask a question, I got a normal esp32 without SPIRAM and i want to use your micropython repository as it has features I want to use (threading and telnet at least) but I have a problem.
after connecting to wifi/internet the code is like this:
[code]
import urequests
urequests.request('GET', '
https://raw.githubusercontent.com/Learn ... als-1.json').json()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "urequests.py", line 56, in request
OSError: [Errno 12] ENOMEM
[/code]
this code work on micropython-esp32 repository but not on micropython built from your repository.
I tried changing mono/dual core settings, stack, heap, wifi buffer, thread stack, thread support, enable/disable framebuffer, telnet. I tried menuconfig defaults, min/max, i tried the settings suggested in micropython-esp32 (16k and 96k)
i failed with always same error, maybe you know what i should use?