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
7 changes: 7 additions & 0 deletions cortex-ar/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- API for inner cache maintenance as part of the new `cache` module. This includes functions to
completely clean, invalidate or clean & invalidate the L1 data cache or perform data cache
maintenance by MVA (specific address).
- Added new `L1Section::set_section_attrs` and `L1Section::section_attrs` method. Also added
low-level `L1Section::new_with_addr_upper_bits_and_attrs` constructor.

### Changed

- MMU code: Use more `arbitrary-int` types for MMU configuration bits.
- Renamed `L1Section::new` to `L1Section::new_with_addr_and_attrs`.

## [v0.2.0]

Expand Down
3 changes: 2 additions & 1 deletion cortex-ar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ arbitrary-int = "1.3.0"
bitbybit = "1.3.3"
num_enum = { version = "0.7", default-features = false }
critical-section = {version = "1.2.0", features = ["restore-state-u8"], optional = true}
thiserror = { version = "2", default-features = false }
defmt = {version = "0.3", optional = true}

[build-dependencies]
Expand All @@ -42,7 +43,7 @@ critical-section-single-core = ["critical-section"]
# a CAS spinlock.
critical-section-multi-core = ["critical-section"]
# Adds defmt::Format implementation for the register types
defmt = ["dep:defmt"]
defmt = ["dep:defmt", "arbitrary-int/defmt"]

[package.metadata.docs.rs]
targets = ["armv7r-none-eabihf", "armv7r-none-eabi", "armv7a-none-eabihf"]
Loading