diff options
-rw-r--r-- | build.rs | 2 | ||||
-rw-r--r-- | src/peripheral/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -9,6 +9,6 @@ fn main() { println!("cargo:rustc-cfg=armv7m"); } else if target.starts_with("thumbv7em-") { println!("cargo:rustc-cfg=armv7m"); - println!("cargo:rustc-cfg=armv7em"); + //println!("cargo:rustc-cfg=armv7em"); } } diff --git a/src/peripheral/mod.rs b/src/peripheral/mod.rs index 65a82a7..2dcfa30 100644 --- a/src/peripheral/mod.rs +++ b/src/peripheral/mod.rs @@ -934,7 +934,7 @@ pub struct Tpiu { pub struct Cbp { /// I-cache invalidate all to PoU pub iciallu: WO<u32>, - reserved0: RW<u32>, + reserved0: u32, /// I-cache invalidate by MVA to PoU pub icimvau: WO<u32>, /// D-cache invalidate by MVA to PoC |