From db5097b277153d256ec4ac2774d2d45d7867ad79 Mon Sep 17 00:00:00 2001 From: Brian Cully Date: Thu, 26 Sep 2019 08:48:42 -0400 Subject: Bump max device to 32. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 891b408..dd50d61 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,7 +18,7 @@ use core::ptr; const SETTLE_DELAY: usize = 2; // How many total devices this driver can support. -const MAX_DEVICES: usize = 1; +const MAX_DEVICES: usize = 32; // And how many endpoints we can support per-device. const MAX_ENDPOINTS: usize = 2; -- cgit v1.2.3