Damien George

Results 1057 comments of Damien George

I tested this on a Pico W and it works well. Might I also suggest the following changes, to make it more user friendly: - change the led init line...

> > Might I also suggest the following changes, to make it more user friendly: > > > > * change the led init line to `led = Pin("LED")`, so...

Thanks for the report. The problem is an overflow of the Emscripten C stack. When using `Module.ccall(...)` and passing an argument (from JS to C) as a type "string", Emscripten...

> If you find a single minute, and a single minute is enough to explain, please expand on that `3 * 4` `Module._malloc` as it buffles me why that's needed,...

For this you can use `mp_raw_code_load_mem()`, which loads a .mpy file from an array and returns a function that can be executed. There is also a helper function `ports/embed/port/embed_util.c:mp_embed_exec_mpy()` which...

@Carglglz thanks for updating. Did you get a chance to test this new version?

I think the overall goal of this PR is good. I just haven't had time to review this in detail.

See related #844. It's a shame that HTTP/1.0 is becoming obsolete because it's a nice and simple (and still functional) protocol. But, yeah, we need to update to use HTTP/1.1....

I have a question about board naming, in particular whether there's a space in the "Pico" board names or not. There are currently the following board definition files in this...

It looks like you're using `micropython-lib`'s `socket.py`, which extends unix's built-in `usocket` module, and adds this constant. The fix would be one of: 1. make micropython-lib detect the platform and...