bnr 0.1.2

Pure Rust implementation of the BNR XFS USB communication protocol
Documentation
1
2
3
4
5
6
7
8
//! Types and functionality for performing maintenance on BNR devices.

use crate::{with_handle, Result};

/// Prepares all modules in the BNR device to be removed.
pub fn park() -> Result<()> {
    with_handle::<()>(|h| h.park())
}