#device-tree #flattened #parser #dt #memory #devicetrees

无std fdt

一个用于解析Flattened Devicetrees的纯Rust #![no_std] 库,目标是拥有非常直观和符合习惯的API。

6个版本

0.1.5 2023年2月5日
0.1.4 2022年7月31日
0.1.3 2021年6月15日
0.1.0 2021年3月25日
0.0.1 2018年3月15日

#109 in 嵌入式开发

Download history 2467/week @ 2024-03-14 2360/week @ 2024-03-21 1890/week @ 2024-03-28 3143/week @ 2024-04-04 2550/week @ 2024-04-11 2275/week @ 2024-04-18 2349/week @ 2024-04-25 2261/week @ 2024-05-02 2764/week @ 2024-05-09 2158/week @ 2024-05-16 2495/week @ 2024-05-23 2487/week @ 2024-05-30 2348/week @ 2024-06-06 2712/week @ 2024-06-13 2343/week @ 2024-06-20 2242/week @ 2024-06-27

10,169 每月下载量
用于 2 crate

MPL-2.0 许可证

56KB
1K SLoC

fdt

一个用于解析Flattened Devicetrees的纯Rust #![no_std] 库,目标是拥有非常直观和符合习惯的API。

crates.io Documentation Build

许可证

此crate采用Mozilla Public License 2.0许可(见LICENSE文件)。

示例

static MY_FDT: &[u8] = include_bytes!("../dtb/test.dtb");

fn main() {
    let fdt = fdt::Fdt::new(MY_FDT).unwrap();

    println!("This is a devicetree representation of a {}", fdt.root().model());
    println!("...which is compatible with at least: {}", fdt.root().compatible().first());
    println!("...and has {} CPU(s)", fdt.cpus().count());
    println!(
        "...and has at least one memory location at: {:#X}\n",
        fdt.memory().regions().next().unwrap().starting_address as usize
    );

    let chosen = fdt.chosen();
    if let Some(bootargs) = chosen.bootargs() {
        println!("The bootargs are: {:?}", bootargs);
    }

    if let Some(stdout) = chosen.stdout() {
        println!("It would write stdout to: {}", stdout.name);
    }

    let soc = fdt.find_node("/soc");
    println!("Does it have a `/soc` node? {}", if soc.is_some() { "yes" } else { "no" });
    if let Some(soc) = soc {
        println!("...and it has the following children:");
        for child in soc.children() {
            println!("    {}", child.name);
        }
    }
}

无运行时依赖

功能