aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2019-08-08 09:53:06 -0400
committerBrian Cully <bjc@kublai.com>2019-08-08 09:53:06 -0400
commit385efdf53fa3fe38591f22d01edf75d3087c2326 (patch)
tree343a27618844fff70f06c3d2b5c2267b35140377 /src/lib.rs
parent80372dedcd7e5f319a1fb9ce28c9188803b46370 (diff)
downloadatsamd-usb-host-385efdf53fa3fe38591f22d01edf75d3087c2326.tar.gz
atsamd-usb-host-385efdf53fa3fe38591f22d01edf75d3087c2326.zip
Simplify data toggle handling.
Only use the data toggle from hardware if we get a data toggle error. Otherwise, use computed toggle values based on endpoint.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--[-rwxr-xr-x]src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 85b3b8f..ce551d4 100755..100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,3 +1,5 @@
+//! USB Host driver implementation for SAMD* series chips.
+
#![no_std]
mod pipe;