• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //! Link Manager implemented in Rust
2 
3 mod either;
4 mod ffi;
5 mod future;
6 mod lmp;
7 mod packets;
8 
9 pub use ffi::*;
10 
11 /// Number of hci command packets used
12 /// in Command Complete and Command Status
13 #[allow(non_upper_case_globals)]
14 pub const num_hci_command_packets: u8 = 1;
15