usb/
lib.rs

1// SPDX-FileCopyrightText: 2026 Foundation Devices, Inc. <hello@foundation.xyz>
2// SPDX-License-Identifier: GPL-3.0-or-later
3
4pub use error::{EhciError, UsbError};
5
6#[cfg(any(keyos, doc))]
7pub mod device;
8pub mod error;
9#[cfg(any(keyos, doc))]
10pub mod host;