Lines Matching +full:default +full:- +full:cli
7 // http://www.apache.org/licenses/LICENSE-2.0
15 //! CLI tools for Bumble
24 mod cli; module
27 async fn main() -> PyResult<()> { in main()
34 let cli: Cli = Cli::parse(); in main() localVariable
36 match cli.subcommand { in main()
40 cli::firmware::rtk::download(dl).await?; in main()
42 Realtek::Drop { transport } => cli::firmware::rtk::drop(&transport).await?, in main()
44 cli::firmware::rtk::info(&transport, force).await?; in main()
47 cli::firmware::rtk::load(&transport, force).await? in main()
49 Realtek::Parse { firmware_path } => cli::firmware::rtk::parse(&firmware_path)?, in main()
61 cli::l2cap::run( in main()
73 Usb::Probe(probe) => cli::usb::probe(probe.verbose)?, in main()
81 struct Cli { struct
109 /// PSM for L2CAP Connection-oriented Channel.
115 /// Maximum L2CAP CoC Credits. When not specified, lets Bumble set the default.
121 /// L2CAP CoC MTU. When not specified, lets Bumble set the default.
127 /// L2CAP CoC MPS. When not specified, lets Bumble set the default.
194 /// Directory to download to. Defaults to an OS-specific path specific to the Bumble tool.
219 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt()
221 Source::LinuxKernel => write!(f, "linux-kernel"), in fmt()
222 Source::RealtekOpensource => write!(f, "realtek-opensource"), in fmt()
223 Source::LinuxFromScratch => write!(f, "linux-from-scratch"), in fmt()
234 …/// TCP server <-> (TCP client / **L2CAP server**) <-> (L2CAP client / TCP server) <-> TCP cli…
249 …/// TCP client <-> (TCP server / **L2CAP client**) <-> (L2CAP server / TCP client) <-> TCP ser…