bind_fuchsia_example_library/
fuchsia_example_library_lib.rs1pub use bind_fuchsia_pci;
8
9pub const NAME: &str = "fuchsia.example.library.Name";
10
11pub const DEVICECATEGORY: &str = "fuchsia.example.library.DeviceCategory";
12pub const DEVICECATEGORY_KB: &str = "keyboard";
13pub const DEVICECATEGORY_MOUSE: &str = "mouse";
14
15pub const I2C_ADDRESS: &str = "fuchsia.example.library.I2C_ADDRESS";
16
17pub const I2C_PROTOCOL: &str = "fuchsia.example.library.I2C_PROTOCOL";
18pub const I2C_PROTOCOL_DEVICE: &str = "fuchsia.example.library.I2C_PROTOCOL.Device";
19pub const I2C_PROTOCOL_IMPL: &str = "fuchsia.example.library.I2C_PROTOCOL.Impl";
20
21pub const FLAG: &str = "fuchsia.example.library.Flag";
22pub const FLAG_ENABLE: bool = true;
23pub const FLAG_DISABLE: bool = false;
24
25pub const BIND_PCI_VID_GIZMOTRONICS: u32 = 3227993;