blob: 05c37286ad82506881a37be1110b27de9eacd341 [file] [log] [blame]
// Copyright 2019 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.
library fuchsia.hardware.bluetooth;
using zx;
/// Represents the bt-emulator device protocol. A bt-emulator device is used for configuring and
/// publishing fake bt-hci devices.
[ForDeprecatedCBindings]
protocol Emulator {
/// Opens a fake controller management channel that speaks the
/// "//sdk/fidl/fuchsia.bluetooth.test.HciEmulator" protocol.
/// Only one channel to this protocol can be open on a given bt-hci-emulator
/// device.
Open(zx.handle:CHANNEL channel);
};