Jim Mussared

Results 211 comments of Jim Mussared

Thanks @GM-Script-Writer-62850 -- this is neat and definitely supporting a more full-featured asyncio http client is something we need for MicroPython. I'm not sure adding an async version of `urequests`...

This is not a non-blocking post request. It's just a deferred post request that is still blocking. Your event loop will still pause while one HTTP request happens and there...

I think this probably makes sense to fix! > i managed to fix this, but my fix does nothing when i `import` it even though it works if i copy/paste...

MicroPython recently moved to using IDF 5.0.2 for ESP32 builds. This is now the only supported version. See https://github.com/micropython/micropython/blob/master/ports/esp32/README.md#setting-up-esp-idf-and-the-build-environment for build instructions. The ulab instructions at https://github.com/v923z/micropython-ulab#compiling-with-cmake and https://github.com/v923z/micropython-ulab/blob/master/build/esp32-cmake.sh will...

On the flash-space-cost point, a configuration option that makes this the _only_ way to do it would be a great potential tradeoff -- i.e. it would be quite useful to...

Thanks Pete, the update looks good. (Just one comment below) > 1. While I understand your comments re stacks I'm unclear how these observations affect the Python coder. Yes you're...

> Rebased and updated for Zephyr v3.4.0. The issue discussed in #10859 and #9115 still remains. I have a resolution to both these working, based on the idea demonstrated by...

@mirko Adding some extra notes from the conversation in Discord: It doesn't really matter if microdot provides a manifest.py. It certainly makes it easier because then your board manifest just...

@big-vl The neopixel driver used on all ports now allows the timings to be specified as a tuple: https://github.com/micropython/micropython-lib/blob/master/micropython/drivers/led/neopixel/neopixel.py#L17 You can use the values posted by @robert-hh above.

Thanks @Josverl -- I agree using subprocess seems more correct (see https://github.com/micropython/micropython/pull/9609#discussion_r1008981475) but it's subtle to get right. I did briefly look into this at the time but I'm not...