From a3bcee32b84b92640b4082958ee1e0a6d078ffdd Mon Sep 17 00:00:00 2001 From: Brian Cully Date: Sun, 11 Aug 2019 13:01:00 -0400 Subject: Documentation. --- src/lib.rs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index b068451..4028980 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -26,6 +26,7 @@ const MAX_ENDPOINTS: usize = 2; // The maximum size configuration descriptor we can handle. const CONFIG_BUFFER_LEN: usize = 128; +/// Boot protocol keyboard driver for USB hosts. pub struct BootKeyboard { devices: [Option; MAX_DEVICES], callback: F, @@ -40,6 +41,12 @@ impl BootKeyboard where F: FnMut(u8, &[u8]), { + /// Create a new driver instance which will call + /// `callback(address: u8, buffer: &[u8])` when a new keyboard + /// report is received. + /// + /// `address` is the address of the USB device which received the + /// report and `buffer` is the contents of the report itself. pub fn new(callback: F) -> Self { Self { devices: [None; MAX_DEVICES], -- cgit v1.2.3