devmem-rs

Small Rust library for accessing the physical address space using /dev/mem

Example

```rust use devmem::Mapping

let mut mapping = unsafe { Mapping::new(0x10000000, 8).unwrap() }; let datatowrite: Vec = vec![0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08]; mapping.copyfromslice(&datato_write);

let mapping = unsafe { Mapping::new(0x10000004, 4).unwrap() }; let mut dataread: Vec = vec![0x00; 4]; mapping.copyintoslice(&mut data_read);

asserteq!(dataread, datatowrite[4..8]); ```

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.