Scott Feldman

Results 50 comments of Scott Feldman

I believe this PR is subsumed by the greater netdev work in drivers:dev. Netdev gives drivers a common entry point to setup and connect to Wifi. Apps use that API,...

An alternative to this PR would be to check the fw version before calling tcpip_adapter_init(), and error out if fw version is too old. I confirmed we can get fw...

Just a note for now: this is fixed in netdev

Looks like duplicate issue of #386

I tried reproducing by calling TinyGo build in a loop, but no luck so far. It's gone over 600 iterations. I'll keep trying. The suggestion was to restrict TinyGo build...

I hit it again today, this time on -target nano-rp2040 and with a different failure signature: ``` #14 77.46 /usr/local/bin/tinygo build -target nano-rp2040 -o ../../garage-nano-rp2040.uf2 -stack-size 8kb -size short /tmp/build-2321174789.go...

> If you try to reproduce, here are a few ways to increase success: > > * Remove cached files between runs: `rm ~/.cache/tinygo/obj-*` (or `tinygo clean` but that's slower)...

Hit another one tonight. And this is with rm .cache files after each TinyGo build per @aykevl's suggestion. ``` 12.19 /usr/local/bin/tinygo build -target nano-rp2040 -o ../../garage-nano-rp2040.uf2 -stack-size 8kb -size short...

Hi, I'm able to reproduce this issue. I'll work on porting the missing UDP parts to tinygo-net... ``` sfeldma@penguin:~/work/u-root$ ~/go/bin/tinygo build -tags purego ./cmds/core/wget/ go: downloading github.com/cenkalti/backoff/v4 v4.1.3 go: downloading...

I opened an issue in tinygo-org/net to add UDP server support: https://github.com/tinygo-org/net/issues/6 I'm trying to wrap my head around u-root. If we had UDP server working, would this mean you...