Basic MSC disk working!

This commit is contained in:
chemicstry
2023-02-03 14:11:55 +02:00
parent b5b1802a57
commit c34091b4e8
17 changed files with 915 additions and 134 deletions

View File

@ -1,5 +1,35 @@
// `bytes` in `#[bitfield(bytes = 6)]` causes a warning
#![allow(redundant_semicolons)]
pub mod control;
pub mod inquiry;
mod control;
pub use control::*;
mod inquiry;
pub use inquiry::*;
mod read_capacity;
pub use read_capacity::*;
mod read_format_capacities;
pub use read_format_capacities::*;
mod read;
pub use read::*;
mod test_unit_ready;
pub use test_unit_ready::*;
mod mode_sense;
pub use mode_sense::*;
mod mode_parameters;
pub use mode_parameters::*;
mod prevent_allow_medium_removal;
pub use prevent_allow_medium_removal::*;
mod request_sense;
pub use request_sense::*;
mod write;
pub use write::*;