Ben Williams

Results 56 comments of Ben Williams

Ok, so I realized that accessing return values will be problematic here, since Python generators' return values are generally ignored by Python. So I did some tests, and I have...

https://github.com/Rybec/pyRTOS#notification-examples I just added that. Please let me know how that works for you, so I can either close the issue or fix whatever I got wrong! If it is...

There are several ways to "inform" tasks about the existence of other tasks. The mailbox mechanic should work exactly as you describe it for this. Another option is global variables....

Ok, so I've written up a new section in the examples section: https://github.com/Rybec/pyRTOS/blob/main/README.md#communication-setup-examples This has examples of how to get references to another task into a task. I hope this...

Ok, so first, sorry I haven't responded on the other issue. Things got really busy for me suddenly. I do intend on getting to it. Now, I have no experience...

I'm not officially supporting MicroPython, _but_ I am generally willing to resolve MicroPython issues, so long as the fixes won't cause any problems for CircuitPython or desktop Python. So here's...

Thanks for the response! I'm actually going to keep this open until I add a note on this to the documentation. Even if I can't fully support MicroPython, I would...

Sadly, CircuitPython does not have any kind of multi-core functionality, so there is not. If you are working in MicroPython, it might be possible to do that manually, by making...

You may have issues with some timing functions, as MicroPython doesn't support all of the same ones as CircuitPython (last time I checked, anyhow...). See issue #9 for some potential...

Since this has not been closed, I figure it is still open for comment. I understand that this idea has been rejected more than once, but I would like to...