Scott Feldman

Results 50 comments of Scott Feldman

Just a note for now: this issue is fixed with the netdev branch.

> @womeya Hey there! About TLS/HTTPS, I think @scottfeldman could give you a much better response than me. My understanding is Scott is working on TLS support on the Go...

Here's a run with tcpecho example: ``` sfeldma@nuc:~/work/drivers$ tinygo flash -monitor -target pico -size short -ldflags="-X 'main.ssid=test' -X 'main.pass=testtest'" -stack-size=32kb ./examples/net/tcpecho code data bss | flash ram 429600 16432 5112...

Requires changes to tinygo-org/devices and soypat/seqs repos: https://github.com/tinygo-org/drivers/compare/dev...scottfeldman:cyw43439?expand=1 https://github.com/soypat/seqs/pull/6

This goes with these: https://github.com/soypat/seqs/pull/6 https://github.com/tinygo-org/drivers/compare/dev...scottfeldman:drivers:cyw43439?expand=1

I've lost my test case after updating my router. I updated to OpenWRT firmware so I could run tcpdump from the router. After this update, the original DHCP issue went...

> @scottfeldman could you maybe elaborate on the process of how the board-specific drivers are abstracted here? As my understanding of tinygos network driver model goes, drivers are represented as...

> > Import cycle with "sync" package. Unfortunately, syscall package imports "sync" in some places, which causes an import cycle: > > Can you work around this with `//go:linkname`? Yes!...

Update: I'm not ready to post commits, but I do have the full "net" pkg calling into wifinina driver via a custom TinyGo syscall interface. syscalls in the interface so...