5个稳定版本
3.1.1 | 2024年6月7日 |
---|---|
3.1.0 | 2024年5月19日 |
3.0.0 | 2024年4月28日 |
2.1.1 | 2024年3月12日 |
2.1.0 | 2024年1月27日 |
153 在 嵌入式开发 中排名
131 每月下载量
用于 2 crates
71KB
1.5K SLoC
flat_device_tree
注意 fdt
的友好分支。
用于解析Flattened Devicetrees的纯Rust #![no_std]
包,目标是拥有一个非常直观和符合语法的API。
许可证
本包采用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.node().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);
}
}
}