-
CPython provides Queue, Semaphore, BoundedSemaphore and Condition in addition to the provided Lock and Event classes.
In the case of Queue the issue was raised in https://github.com/micropython/mic…
-
Hi @alisonsalmeida , I'm insterested on your library, but i cannot find some example or tutorial, could you provide any information? Thanks!
-
I ported miccropython on stm32. And intend to use uasyncio to open the server. However, the system reports an error like
Task exception wasn't retrieved
future: coro=
Traceback (most recent cal…
-
Building ESP-32 GENERIC board using ESP-IDF v4.4 (`142bb32c50fa9875b8b69fa539a2d59559460d72`) throws memory allocation errors upon py file imports:
```
Traceback (most recent call last):
File "…
-
Hi... Can this be used to send and receive SMS messages?
To send a message I guess I need to do something like this:
await sim.command('AT+CMGS="PHONE_NUMBER","{}"'.format(phone_number), 'OK')…
-
(First reported on the [forum](https://forum.micropython.org/viewtopic.php?f=2&t=10753))
The following snippet:
```python
try:
import uasyncio as asyncio
except ImportError:
import a…
-
If you call Event.set() in an ISR, you could end up losing all tasks that were awaiting the event (if the ISR is executed while uasyncio is sorting tasks on the queue e.g.).
I made a testscript a w…
-
Great strides have been made towards millisecond level scheduling but the algorithm could be further improved. Given the importance of cooperative scheduling in many firmware solutions this is arguabl…
-
https://github.com/micropython/micropython/blob/62849b7010abffb7b0a9c9875930efe7cb77519c/py/modthread.c#L69
---
Background:
I'm looking for a way to implement a cancelable timeout on Linux, e…
dlech updated
2 months ago
-
Environment: NodeMcu clone ESP8266 with picoweb built into custom firmware
1. Copy _example_webapp2.py_ to esp8266 and _squares.tpl_ into _templates_ dir
2. Connect to network as station
3. Add I…