Remove USB/serial support: network-only protocol, drop tinyusb and PICOBOOT

This commit is contained in:
Ian Gulliver
2026-04-17 11:20:57 -07:00
parent 23587c41e2
commit cdc113285a
16 changed files with 4 additions and 343 deletions

View File

@@ -100,11 +100,6 @@ func first[T any](results []Response[T], err error) (*T, error) {
return results[0].Value, nil
}
func (c *Client) PICOBOOT() error {
_, err := first(roundTrip[ResponsePICOBOOT](c, &RequestPICOBOOT{}))
return err
}
func (c *Client) Info() (*ResponseInfo, error) {
return first(roundTrip[ResponseInfo](c, &RequestInfo{}))
}