diff options
author | Brian Cully <bjc@kublai.com> | 2019-09-26 08:48:42 -0400 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2019-09-26 08:48:42 -0400 |
commit | db5097b277153d256ec4ac2774d2d45d7867ad79 (patch) | |
tree | 250328757ffb90cd3aaa3bdc50481d5060f048cc | |
parent | 8d21df98d0b5f90fc5a6cf8092b397eabdb494a5 (diff) | |
download | bootkbd-db5097b277153d256ec4ac2774d2d45d7867ad79.tar.gz bootkbd-db5097b277153d256ec4ac2774d2d45d7867ad79.zip |
Bump max device to 32.
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |