blob: 82fac1049e52b7dd53e7336f4f29ec47f732c2c6 [file] [log] [blame]
// Copyright 2023 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@available(added=HEAD)
library fuchsia.hardware.usb;
using zx;
using fuchsia.hardware.usb.endpoint;
@discoverable
closed protocol Usb {
/// Connects to endpoint. Returns
/// * ZX_ERR_NOT_FOUND: if endpoint address does not exist.
/// * ZX_ERR_ALREADY_BOUND: if the endpoint is already bound.
strict ConnectToEndpoint(resource struct {
ep_addr uint8;
ep server_end:fuchsia.hardware.usb.endpoint.Endpoint;
}) -> () error zx.Status;
// TODO(https://fxbug.dev/42178882): More functions to come. Equivalents to
// //sdk/banjo/fuchsia.hardware.usb/usb.fidl
};
service UsbService {
device client_end:Usb;
};