Andrew Leech

Results 441 comments of Andrew Leech

For those interested in AI coding, this was 95% written by Claude Code (Opus and Sonnet 4) as mentioned in the attributions above. I _started_ prompting the build of this...

Thanks @Josverl good to hear it either for you, I still could hardly believe it worked for me! I'd be interested to hear any notes about what was confusing /...

> > I'd be interested to hear any notes about what was confusing / difficult to get going to feed into docs. > > I first got in a tangle...

> I was able to add (a first rough draft) of [support for `frame.f_locals`](https://github.com/Josverl/micropython/blob/c923b54baf53bbf6395d058cbac5683c2d70ee45/py/profile.c#L135-L167) on top of the pdb_support branch. Oh wow awesome, I wanted to tackle basically exactly that!...

With this feature any MCU with TinyUSB based USB connection _becomes_ network capable. I hadn't thought of routing or bridging to other interfaces, though that's probably possible. My initial use...

> who is server, who is client? There's no hard and fast rule here, both can run servers and be clients. This is just a network connection. Both the micropython...

This has been updated to make `mdns` work so the device can be pinged from host based on hostname, though it seems pretty slow to resolve initially on windows. The...

On most ports, features are generally enabled like: ``` make -j BOARD=RPI_PICO2_W CFLAGS_EXTRA="-DMICROPY_HW_NETWORK_USBNET=1" ``` That plug gap alignment error is a strange one, I actually got it yesterday on a...

Thanks for your testing information, I'll have to look into making it easier to include on-demand with the make command. At the moment I'm not expecting it to be built...

Great to hear @xplshn I finally figured out how to pass defines on the command line during make, it's different to the other ports: ``` make -j BOARD=RPI_PICO2_W clean CFLAGS="-DMICROPY_HW_NETWORK_USBNET=1"...