Philip Howard

Results 1118 comments of Philip Howard

``` Co-Authored-By: Claude ``` Is this a meaningful thing to add? A tool is not an author and a "noreply" email isn't much use for posterity. Edit: To engage with...

> So your suggestion of it being surprising that a device would keep running between mpremote calls is curious to me I think we come at this from *wildly* different...

As it stands, you're probably right and I'll refactor this PR to fix the omission without addressing our specific use-case- I've got a fork with some minimal changes that allow...

I have rebased/pushed this because I'm experimenting with FAT again. I believe the multiple-filesystems issue still presides, since as of https://github.com/micropython/micropython/commit/6aa3c946347281875165392c09753547d8c77fc3 you can select a portion of RP2s flash on...

Looks like `bytes` fails the inside check in `mp_get_buffer`: ```c MP_OBJ_TYPE_GET_SLOT(type, buffer)(obj, bufinfo, flags & MP_BUFFER_RW) == 0 ``` Because it's effectively a string, and you can't write to a...

Are there instances where a FrameBuffer would *need* to write its underlying buffer? Or is this buffer a one time, read-only, copied-into-the-FrameBuffer’s-own-memory thing? Despite not-inventing-here my own alternate, I haven’t...

Okay since the FrameBuffer instance is instantiated with the buffer-type object as its memory: https://github.com/micropython/micropython/blob/d7d77d91becd0716ac1672c92652d9dd72ec613f/extmod/modframebuf.c#L323 Then it necessarily *must* be writable, or all attempts to mutate the FrameBuffer - ie:...

Yes after working on graphics and asset pipelines for 32blit and PicoSystem and then creating PicoGraphics and blazing the trail with embedded vector graphics I have somehow misunderstood a simple...