blackmagic_camera_control/
lib.rs

1#[cfg(feature = "ble")]
2pub mod blecamera;
3#[cfg(feature = "ble")]
4pub use blecamera::BluetoothCamera;
5
6pub mod error;
7pub mod rawcommand;
8
9pub mod command {
10    include!(concat!(env!("OUT_DIR"), "/command.rs"));
11}
12
13//Exports
14pub use rawcommand::Operation;