usbw 0.0.2

basic USB driver. So far just a wrapper for `rusb`. Planning on wrapping `libusb` later
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;

pub mod device;
pub mod error;
#[cfg(feature = "libusb")]
pub mod libusb;
pub mod manager;
pub mod version;
#[cfg(feature = "winusb")]
pub mod winusb;