-
MicroPython allows a task to be created before issuing **.run()** but CPython throws an exception.
```python
try:
import uasyncio as asyncio
except ImportError:
import asyncio
async de…
-
ESP32C3 with firmware 1.20 -1.22 throws a uasyncio related error but the problem and solution is related with the micropython changes from v1.19.1 (which works) to 1.21-1.22
**Description of prob…
-
I want to retrieve some information through a web server and then close it, but I don't really understand how am I supposed to do that. `server.run()` is blocking, so no code past this call ever execu…
GOKOP updated
5 months ago
-
Hi,
I'm trying to use a Pi Pico W to connect to the [Apple Media Service](https://developer.apple.com/library/archive/documentation/CoreBluetooth/Reference/AppleMediaService_Reference/Specification…
-
Hello,
I was in the process of creating a PR for this repo (which I love) to support asynchronous animations using uWeb-async. However, I couldn't get uWeb-async to work for me (I'd assume its a co…
-
I'm unsure if this qualifies as a bug as there is an obvious workround.
The issue arose in [this report](https://github.com/peterhinch/micropython-async/issues/99). If the UART receiver times out t…
-
The pico sometimes crashes and I believe the memory gets corrupted, causing some scripts to be read as directories.
Think that this is caused by uasyncio.start_server starting up (and the fact the…
-
The [readline method](https://github.com/micropython/micropython/blob/e54626f4c1b5cb4de0b5dc86d820bb36c1d6499f/extmod/uasyncio/stream.py#L33) returns if the final character is a newline. However it is…
-
During a message exchange with @peterhinch I (re)discovered some incompatibilities I'd like to share. At first it looked like some easy and small difference but the more I dug into it, the more supris…
-
Hi, I talked to you in the past on this issue https://github.com/mcauser/awesome-micropython/issues/38
Do you think do support the uasyncio/non-blocking on the Slave and Master?
Thank you in adv…