fuchsia_audio_dai/lib.rs
1// Copyright 2021 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5/*! Fuchsia DAI Library
6
7This library can be used to communicate with a Digital Audio Interface device as defined by
8https://fuchsia.dev/fuchsia-src/concepts/drivers/driver_architectures/audio_drivers/audio_dai
9using the driver node directly.
10
11Components using the library will need to have access to the dai class of devices in their component
12 manifest.
13
14*/
15
16/// Driver library for querying and configuring a known DAI device.
17pub mod driver;
18pub use driver::DigitalAudioInterface;
19
20/// Discovery library to enumerate devices available to a component.
21pub mod discover;
22pub use discover::find_devices;
23
24/// Fuchsia Audio device integration.
25pub mod audio;
26pub use audio::DaiAudioDevice;
27
28/// Helpers and mocks for writing tests
29pub mod test;