DeviceTree

The crate devicetree can be used for parsing Devicetree Blob (DTB), based on Devicetree Specification.

The crate devicetree is a #![no_std] crate written in Rust.

Example

```Rust use devicetree::DeviceTreeBlob;

fn main() { let mut dtb: &[u8] = include_bytes!("");

let tree = DeviceTree::from_bytes(&mut dtb).unwrap();

println!("{}", tree);

} ```

Debug

devicetree uses Log Messages to log info, debug, or error messages to the console. More about Log Messages can be found here.

Set the RUST_LOG environment variable to print debug messages: shell RUST_LOG=debug cargo run