1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
#![no_std]
#![warn(clippy::pedantic)]
#![warn(clippy::style)]
#![warn(clippy::cargo)]
#![allow(clippy::module_name_repetitions)]
#![allow(clippy::missing_errors_doc)]
#![allow(clippy::missing_panics_doc)]
#![allow(clippy::struct_excessive_bools)]
#![warn(clippy::unwrap_used)]
#![warn(clippy::expect_used)]
#![warn(clippy::use_self)]
//! ```rust, no_run
//! # use core::option::Option;
//! # use core::result::Result;
//! # use core::todo;
//! # use usb_device::bus::PollResult;
//! # use fugit::{ExtU32, MillisDurationU32};
//! use usbd_human_interface_device::page::Keyboard;
//! use usbd_human_interface_device::device::keyboard::{KeyboardLedsReport, NKROBootKeyboardConfig};
//! use usbd_human_interface_device::prelude::*;
//! # use usb_device::class_prelude::*;
//! # use usb_device::prelude::*;
//! # use usb_device::UsbDirection;
//! #
//! # trait InputPin {
//! # fn is_high(&self) -> Result<bool, core::convert::Infallible>;
//! # fn is_low(&self) -> Result<bool, core::convert::Infallible>;
//! # }
//! #
//! # struct DummyUsbBus;
//! # impl UsbBus for DummyUsbBus{fn alloc_ep(&mut self, ep_dir: UsbDirection, ep_addr: Option<EndpointAddress>, ep_type: EndpointType, max_packet_size: u16, interval: u8) -> usb_device::Result<EndpointAddress> {
//! # todo!()
//! # }
//! #
//! # fn enable(&mut self) {
//! # todo!()
//! # }
//! #
//! # fn reset(&self) {
//! # todo!()
//! # }
//! #
//! # fn set_device_address(&self, addr: u8) {
//! # todo!()
//! # }
//! #
//! # fn write(&self, ep_addr: EndpointAddress, buf: &[u8]) -> usb_device::Result<usize> {
//! # todo!()
//! # }
//! #
//! # fn read(&self, ep_addr: EndpointAddress, buf: &mut [u8]) -> usb_device::Result<usize> {
//! # todo!()
//! # }
//! #
//! # fn set_stalled(&self, ep_addr: EndpointAddress, stalled: bool) {
//! # todo!()
//! # }
//! #
//! # fn is_stalled(&self, ep_addr: EndpointAddress) -> bool {
//! # todo!()
//! # }
//! #
//! # fn suspend(&self) {
//! # todo!()
//! # }
//! #
//! # fn resume(&self) {
//! # todo!()
//! # }
//! #
//! # fn poll(&self) -> PollResult {
//! # todo!()
//! # }}
//! #
//! # let usb_bus = DummyUsbBus{};
//! # let pin: &dyn InputPin = todo!();
//! # let update_leds: fn(KeyboardLedsReport) = todo!();
//! #
//! # struct CountDown;
//! #
//! # impl CountDown{
//! # fn start(&mut self, count: MillisDurationU32){}
//! # fn wait(&mut self) -> Result<(), ()>{ todo!() }
//! # }
//! #
//! # struct Timer;
//! # impl Timer {
//! # fn count_down(&self) -> CountDown {
//! # todo!()
//! # }
//! # }
//! # let timer: Timer = todo!();
//!
//! let usb_alloc = UsbBusAllocator::new(usb_bus);
//!
//! let mut keyboard = UsbHidClassBuilder::new()
//! .add_interface(
//! NKROBootKeyboardConfig::default(),
//! )
//! .build(&usb_alloc);
//!
//! let mut usb_dev = UsbDeviceBuilder::new(&usb_alloc, UsbVidPid(0x1209, 0x0001))
//! .manufacturer("usbd-human-interface-device")
//! .product("NKRO Keyboard")
//! .serial_number("TEST")
//! .build();
//!
//! let mut tick_timer = timer.count_down();
//! tick_timer.start(1.millis());
//!
//! loop {
//! let keys = if pin.is_high().unwrap() {
//! [Keyboard::A]
//! } else {
//! [Keyboard::NoEventIndicated]
//! };
//!
//! keyboard.interface().write_report(keys).ok();
//!
//! //tick once per ms/at 1kHz
//! if tick_timer.wait().is_ok() {
//! keyboard.interface().tick().unwrap();
//! }
//!
//! if usb_dev.poll(&mut [&mut keyboard]) {
//! match keyboard.interface().read_report() {
//!
//! Ok(l) => {
//! update_leds(l);
//! }
//! _ => {}
//!
//! }
//! }
//! }
//! ```
#![doc = include_str!("../README.md")]
pub(crate) mod fmt;
//Allow the use of std in tests
#[cfg(test)]
extern crate std;
use usb_device::UsbError;
pub mod device;
pub mod hid_class;
pub mod interface;
pub mod page;
pub mod prelude;
#[derive(Debug)]
pub enum UsbHidError {
WouldBlock,
Duplicate,
UsbError(UsbError),
SerializationError,
}
impl From<UsbError> for UsbHidError {
fn from(e: UsbError) -> Self {
match e {
UsbError::WouldBlock => Self::WouldBlock,
_ => Self::UsbError(e),
}
}
}