tinygo-org / drivers

TinyGo drivers for sensors, displays, wireless adaptors, and other devices that use I2C, SPI, GPIO, ADC, and UART interfaces.
https://tinygo.org
BSD 3-Clause "New" or "Revised" License
585 stars 180 forks source link

fix smoketest failures on examples/net examples #623

Closed scottfeldman closed 7 months ago

scottfeldman commented 7 months ago

examples/net/socket test was failing because of missing updates to recent net/netip changes to netdev interface. Oops!

examples/net/mqttclient/paho was failing because of new dependencies brought in by paho package that haven't been ported to TinyGo's net package. Will open an issue on tinygo-org/net to fix the dependencies.

scottfeldman commented 7 months ago

Added https://github.com/tinygo-org/net/issues/10 to fix the missing paho/mqtt dependencies.

deadprogram commented 7 months ago

What about all the other examples that I mentioned in https://github.com/tinygo-org/net/issues/9 sounds like that is all the same issue?

scottfeldman commented 7 months ago

What about all the other examples that I mentioned in tinygo-org/net#9 sounds like that is all the same issue?

I'll take a look at that one in the morning. Probably some issue when converting to netip API.

deadprogram commented 7 months ago

Thanks @scottfeldman

scottfeldman commented 7 months ago

I believe tinygo-org/net#9 is fixed with tinygo-org/net/pull/11

deadprogram commented 7 months ago

Thanks for the fixes @scottfeldman now merging.