Damien George

Results 1057 comments of Damien George

> here is the minimal code you could try it. In REPL, pls define functions as below and run async task. On my chip, exceptions occur randomly, maybe after some...

Thanks @bhcuong2008 for the details. A very brief summary of the above would be: you have a complex system that works without a problem. Then integrating MicroPython as a subsystem...

> I have problem with only async run. When run python sync code, there's no problem as my above code, > > ``` > import time > > def test():...

> by the way could u suggest me what tests to be run Run all the `tests/basics/*.py` and `tests/stress/*.py` tests (ones that aren't supported by your implementation will be skipped...

> * This is the exception Can you show the disassembly of the .ELF file at the location of the exception `0x400803c0`?

@bhcuong2008 I'm trying to reproduce the issue based on your instructions above in https://github.com/peterhinch/micropython-async/issues/60#issuecomment-847952592 . I have some questions: 1. what exact version of the ESP IDF do you use?...

Thanks @bhcuong2008 , I can now build it and it's running. But no failures yet.

It had a watchdog timeout after about 40 minutes, but that doesn't give any useful information about why. Is this expected?

I ran it some more and had 2 non-wdt exceptions. The first was: ``` >> [1] Connecting to 192.168.20.100:1337 with timeout: 5000ms >> [2] Connecting to 192.168.20.100:1337 with timeout: 5000ms...

> So I want to implement task queues in C++ advanced list data types, so that it could reserve buffer to avoid allocate/free heap memory too often. The pairing heap...