-
Notifications
You must be signed in to change notification settings - Fork 165
AttributeError: 'poll' object has no attribute 'ipoll' #153
Comments
That's because poll.ipoll() is not implemented in the Pycom fork of MicroPython. Your easiest option is probably to change the uasyncio source to use poll.poll() instead. It is basically the same but less memory efficient. But since the WiPy3 has 4MB RAM it shouldn't be a problem for you. |
Thank you. I have changed it. I think I was also getting confused because my software reaches loop.run_forever(), but doesn't seem to run anything, does not even go to the first task. |
Seems to get stuck in that loop: Traceback (most recent call last): |
Hello, |
Fixed the handling of timeoffset in utime.mktime
Fixed the handling of timeoffset in utime.mktime
I am using a WIPY 3.0 on a WIPY 3.0.
MicroPython v1.8.6-849-83e2f7f on 2018-03-19; WiPy with ESP32
When I try to use uasyncio module i get the following error:
Traceback (most recent call last):
File "main.py", line 80, in
File "asyncio_priority.py", line 128, in run_forever
File "uasyncio/init.py", line 69, in wait
AttributeError: 'poll' object has no attribute 'ipoll'
MicroPython v1.8.6-849-83e2f7f on 2018-03-19; WiPy with ESP32
Would anyone be able to explain this error please?
Thank you!
The text was updated successfully, but these errors were encountered: