Jim Mussared

Results 211 comments of Jim Mussared

To make it a bit more clear... If the following tree is frozen: ``` a - __init__.py - b - c.py - d.py ``` but with `micropython.frozen_overlay("overlay")` and on the...

It was pointed out to me (thanks @tsukasa-au) that this has some resemblance to [PEP420](https://peps.python.org/pep-0420/).

Thanks @dstromberg So I can understand this better, what's the underlying workflow that you're using this for? I'm guessing you have the unix build in your `PATH`, and you want...

I think the issue here is that micropython-lib's `sys` module needs to be updated since https://github.com/micropython/micropython/pull/6164 renamed the builtin from `sys` to `usys`. So what used to happen is that...

See corresponding update to aioble in https://github.com/micropython/micropython-lib/pull/517

For comparison on IDF 4.2, the heap total is 246288, the largest contiguous free block is 113804, and it allocates that full amount for the MicroPython heap. After that, the...

> For that you could leave blocks 1&2 That's 73kiB total for the IDF. This means you can only have a single (non-secure) socket connected, regardless of SSL. > or...

> If you're currently blocked by out of memory issues when using SSL, I have a (not thoroughly tested) change in my tree, quickly committed here, that implements allocating mbedtls...

> Is it useful to have the mbedTLS wrapper allocators try to allocate from the IDF heap first, and only fall back to Python heap if the IDF heap allocation...

(All the CI fails of course because it depends on #8914 and https://github.com/micropython/micropython-lib/pull/506 )