consistency changes, workflow fix
Some checks failed
ci / Check build (push) Has been cancelled
ci / Check formatting (push) Has been cancelled
ci / Check Documentation Build (push) Has been cancelled
ci / Clippy (push) Has been cancelled
ci / Check build (pull_request) Has been cancelled
ci / Check formatting (pull_request) Has been cancelled
ci / Check Documentation Build (pull_request) Has been cancelled
ci / Clippy (pull_request) Has been cancelled

This commit is contained in:
Robin Mueller
2025-10-07 12:52:30 +02:00
parent 6921a6fd95
commit a194dda532
24 changed files with 30 additions and 27 deletions

View File

@@ -14,11 +14,11 @@ categories = ["embedded", "no-std", "hardware-support"]
cortex-a-rt = { version = "0.1", optional = true, features = ["vfp-dp"] }
cortex-ar = { version = "0.3" }
arbitrary-int = "2"
zynq-mmu = { path = "../zynq-mmu", version = "0.1.0" }
zynq7000-mmu = { path = "../zynq7000-mmu", version = "0.1.0" }
[features]
default = ["rt"]
tools = ["zynq-mmu/tools"]
tools = ["zynq7000-mmu/tools"]
rt = ["dep:cortex-a-rt"]
[[bin]]

View File

@@ -56,7 +56,7 @@ fn main() {
writeln!(buf_writer, "use crate::mmu::section_attrs;").unwrap();
writeln!(buf_writer, "use cortex_ar::mmu::L1Section;").unwrap();
writeln!(buf_writer, "use zynq_mmu::L1Table;").unwrap();
writeln!(buf_writer, "use zynq7000_mmu::L1Table;").unwrap();
writeln!(buf_writer, "").unwrap();
writeln!(buf_writer, "/// MMU Level 1 Page table.").unwrap();

View File

@@ -12,7 +12,7 @@
pub use cortex_a_rt::*;
#[cfg(feature = "rt")]
use zynq_mmu::L1TableWrapper;
use zynq7000_mmu::L1TableWrapper;
pub mod mmu;
#[cfg(feature = "rt")]

View File

@@ -1,7 +1,7 @@
//! This file was auto-generated by table-gen.rs
use crate::mmu::section_attrs;
use cortex_ar::mmu::L1Section;
use zynq_mmu::L1Table;
use zynq7000_mmu::L1Table;
/// MMU Level 1 Page table.
///