aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2019-09-26 08:48:42 -0400
committerBrian Cully <bjc@kublai.com>2019-09-26 08:48:42 -0400
commitdb5097b277153d256ec4ac2774d2d45d7867ad79 (patch)
tree250328757ffb90cd3aaa3bdc50481d5060f048cc
parent8d21df98d0b5f90fc5a6cf8092b397eabdb494a5 (diff)
downloadbootkbd-db5097b277153d256ec4ac2774d2d45d7867ad79.tar.gz
bootkbd-db5097b277153d256ec4ac2774d2d45d7867ad79.zip
Bump max device to 32.
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
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;