fdt/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! This crate contains utilities to interact with Flattened DeviceTree binary
//! blobs. Included is a builder and parser, both available as no_std.

#![no_std]
#![forbid(unsafe_code)]

pub mod builder;
pub mod parser;
mod spec;

pub use spec::ReserveEntry;