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
2 changes: 1 addition & 1 deletion cortex-a-rt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This library implements a simple Arm vector table, suitable for getting into a
Rust application running in System Mode. It also provides a reference start
up method. Most Cortex-A based systems will require chip specific start-up
code, so the start-up method can over overridden.
code, so the start-up method can be overridden.

See <https://docs.rs/cortex-a-rt> for detailed documentation.

Expand Down
12 changes: 6 additions & 6 deletions cortex-a-rt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! This library implements a simple Arm vector table, suitable for getting into
//! a Rust application running in System Mode. It also provides a reference
//! start up method. Most Cortex-A based systems will require chip specific
//! start-up code, so the start-up method can over overridden.
//! start-up code, so the start-up method can be overridden.
//!
//! The default startup routine provided by this crate does not include any
//! special handling for multi-core support because this is oftentimes
Expand Down Expand Up @@ -122,7 +122,7 @@
//! loop { }
//! }
//! ```
//!
//!
//! or:
//!
//! ```rust
Expand All @@ -149,7 +149,7 @@
//! loop { }
//! }
//! ```
//!
//!
//! or:
//!
//! ```rust
Expand Down Expand Up @@ -220,7 +220,7 @@
//! loop { }
//! }
//! ```
//!
//!
//! Or it can return an address where execution should resume after the
//! Exception handler is complete (which is unsafe):
//!
Expand Down Expand Up @@ -278,7 +278,7 @@
//! loop { }
//! }
//! ```
//!
//!
//! Or it can return an address where execution should resume after the
//! Exception handler is complete (which is unsafe):
//!
Expand Down Expand Up @@ -645,7 +645,7 @@ macro_rules! restore_context {
#[cfg(target_arch = "arm")]
core::arch::global_asm!(
r#"

// Called from the vector table when we have an undefined exception.
// Saves state and calls a C-compatible handler like
// `extern "C" fn _undefined_handler(addr: usize) -> usize;`
Expand Down
2 changes: 1 addition & 1 deletion cortex-r-rt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This library implements a simple Arm vector table, suitable for getting into a
Rust application running in System Mode. It also provides a reference start
up method. Most Cortex-R based systems will require chip specific start-up
code, so the start-up method can over overridden.
code, so the start-up method can be overridden.

See <https://docs.rs/cortex-r-rt> for detailed documentation.

Expand Down
12 changes: 6 additions & 6 deletions cortex-r-rt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! This library implements a simple Arm vector table, suitable for getting into
//! a Rust application running in System Mode. It also provides a reference
//! start up method. Most Cortex-R based systems will require chip specific
//! start-up code, so the start-up method can over overridden.
//! start-up code, so the start-up method can be overridden.
//!
//! The default startup routine provided by this crate does not include any
//! special handling for multi-core support because this is oftentimes
Expand Down Expand Up @@ -121,7 +121,7 @@
//! loop { }
//! }
//! ```
//!
//!
//! or:
//!
//! ```rust
Expand All @@ -148,7 +148,7 @@
//! loop { }
//! }
//! ```
//!
//!
//! or:
//!
//! ```rust
Expand Down Expand Up @@ -219,7 +219,7 @@
//! loop { }
//! }
//! ```
//!
//!
//! Or it can return an address where execution should resume after the
//! Exception handler is complete (which is unsafe):
//!
Expand Down Expand Up @@ -277,7 +277,7 @@
//! loop { }
//! }
//! ```
//!
//!
//! Or it can return an address where execution should resume after the
//! Exception handler is complete (which is unsafe):
//!
Expand Down Expand Up @@ -580,7 +580,7 @@ core::arch::global_asm!(
r#"
// Work around https://github.com/rust-lang/rust/issues/127269
.fpu vfp3-d16

// Called from the vector table when we have an undefined exception.
// Saves state and calls a C-compatible handler like
// `extern "C" fn _undefined_handler(addr: usize) -> usize;`
Expand Down
Loading