Jim Mussared

Results 211 comments of Jim Mussared

Thanks for the comments! > So being able to import ufoo sidesteps this and allows one to very easily benefit from coding tools without any extra work (other than creating...

Some notes on the performance / memory... By removing the filesystem search from importing a builtin, `import os` (or `import uos`) goes from ~2-5ms to 0.15ms. (Note: in current builds...

Thanks @laurensvalk > ... PEP399... > I'm not arguing to do this exactly, but it seems like there is some precedent that could provide inspiration here. Yes, this is exactly...

@Gadgetoid There's no reason that MicroPython's gc heap needs to be zero initialised at boot (in fact, the gc doesn't assume that it has been initialised, because on other platforms...

> Yes, lets fix it in core and then resync here. > In general I think we should simply start using uintptr where needed (although mynewt was/is 32bit os only)....

Hi NimBLE team, just wondering if you have any update on this. In MicroPython we continue to use a workaround similar to what I described above via the private functions....

Thanks @knuxify Could you please rename to remove the `_4MB`. We're going to start merging the different flash sizes into single boards with multiple variants. See https://github.com/micropython/micropython/pull/8505 where @mattytrentini is...

> Where should I define the `PICO_BOARD` override? At the start of mpconfigboard.cmake See e.g. https://github.com/micropython/micropython/blob/master/ports/rp2/boards/W5100S_EVB_PICO/mpconfigboard.cmake

I think this is more likely something that you could do in Python over two 8x8 MONO_HLSB framebuffer. i.e. write a Python class that provided all the same methods as...

FWIW, I may have the pixel layout wrong... only skimmed the linked driver. It might need to be a single 16x8 framebuf, and then use e.g. ``` def line(self, x1,...