Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cortex-ar/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- MMU code: Use more `arbitrary-int` types for MMU configuration bits.
- Renamed `L1Section::new` to `L1Section::new_with_addr_and_attrs`.
- Bumped `defmt` to v1
- Bumped `arbitrary-int` to v2

## [v0.2.0]

Expand Down
2 changes: 1 addition & 1 deletion cortex-ar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ rust-version = "1.83"
version = "0.2.0"

[dependencies]
arbitrary-int = "1.3.0"
arbitrary-int = "2"
bitbybit = "1.3.3"
num_enum = { version = "0.7", default-features = false }
critical-section = {version = "1.2.0", features = ["restore-state-u8"], optional = true}
Expand Down
2 changes: 1 addition & 1 deletion cortex-ar/src/register/dfsr.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Code for managing DFSR (*Data Fault Status Register*)

use arbitrary_int::{u4, u5, Number};
use arbitrary_int::{prelude::*, u4, u5};

use crate::register::{SysReg, SysRegRead, SysRegWrite};

Expand Down
2 changes: 1 addition & 1 deletion cortex-ar/src/register/drsr.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Code for managing DRSR (*Data Region Size and Enable Register*)

use arbitrary_int::Number;
use arbitrary_int::prelude::*;

use crate::register::{SysReg, SysRegRead, SysRegWrite};

Expand Down
2 changes: 1 addition & 1 deletion cortex-ar/src/register/ifsr.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Code for managing IFSR (*Instruction Fault Status Register*)

use arbitrary_int::{u4, u5, Number};
use arbitrary_int::{prelude::*, u4, u5};

use crate::register::{SysReg, SysRegRead, SysRegWrite};

Expand Down