usb-hal 0.0.0-zero.1

USB framework for microcontrollers in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! ## USB framework for microcontrollers
//!
//! Consist three parts
//! - Common (Unimplemented)
//! - Host (Unimplemented)
//! - Device (Unimplemented)

#![no_std]
#![warn(missing_docs)]

#[cfg(test)]
mod tests {
}