diff options
-rw-r--r-- | cortex-m-rt/Cargo.toml | 2 | ||||
-rw-r--r-- | cortex-m-rt/README.md | 4 | ||||
-rw-r--r-- | cortex-m-rt/src/lib.rs | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index c8c84cf..276f33c 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "runtime", "startup"] license = "MIT OR Apache-2.0" name = "cortex-m-rt" readme = "README.md" -repository = "https://github.com/japaric/cortex-m-rt" +repository = "https://github.com/rust-embedded/cortex-m-rt" version = "0.6.1" [dependencies] diff --git a/cortex-m-rt/README.md b/cortex-m-rt/README.md index 01c2243..d74fa51 100644 --- a/cortex-m-rt/README.md +++ b/cortex-m-rt/README.md @@ -3,11 +3,11 @@ # `cortex-m-rt` -> Minimal runtime / startup for Cortex-M microcontrollers +> Startup code and minimal runtime for Cortex-M microcontrollers This project is developed and maintained by the [Cortex-M team][team]. -# [Documentation](https://docs.rs/cortex-m-rt) +# [Documentation](https://rust-embedded.github.io/cortex-m-rt) # License diff --git a/cortex-m-rt/src/lib.rs b/cortex-m-rt/src/lib.rs index ad36400..f3e58d0 100644 --- a/cortex-m-rt/src/lib.rs +++ b/cortex-m-rt/src/lib.rs @@ -1,4 +1,4 @@ -//! Minimal startup / runtime for Cortex-M microcontrollers +//! Startup code and minimal runtime for Cortex-M microcontrollers //! //! This crate contains all the required parts to build a `no_std` application (binary crate) that //! targets a Cortex-M microcontroller. |