Skip to main content

bose_dfu/
lib.rs

1/// Check if a device is compatible and find its mode based on USB IDs.
2pub mod device_ids;
3
4/// Load and validate firmware update files containing suffixes as defined the DFU spec.
5pub mod dfu_file;
6
7/// Perform firmware-related operations on a connected Bose USB device using HID reports.
8pub mod protocol;